diff --git a/.gitignore b/.gitignore index 8c3c8f2..1650e7c 100644 --- a/.gitignore +++ b/.gitignore @@ -225,4 +225,5 @@ replay_pid* # snippet testing files *snippets_* specs/ -sample_responses/ \ No newline at end of file +sample_responses/ +.DS_Store \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 01888ad..0c825ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.7.1] - 2025-06-19 + +### Added +* `submittals`: add `get_types()` method with snippets in `submittals.ipynb` + +### Changed +* `submittals`: add `types` parameter to `get()` method + ## [0.7.0] - 2025-06-18 ### Added diff --git a/ProPyCore/__init__.py b/ProPyCore/__init__.py index b565676..19cc52f 100644 --- a/ProPyCore/__init__.py +++ b/ProPyCore/__init__.py @@ -3,4 +3,4 @@ from .exceptions import * from .procore import Procore -__version__ = "0.7.0" \ No newline at end of file +__version__ = "0.8.0" \ No newline at end of file diff --git a/ProPyCore/access/drawings/__init__.py b/ProPyCore/access/drawings/__init__.py new file mode 100644 index 0000000..e6214d7 --- /dev/null +++ b/ProPyCore/access/drawings/__init__.py @@ -0,0 +1,12 @@ +from .sets import Sets +from .revisions import Revisions +from .uploads import Uploads +from .tiles import Tiles + + +class Drawings: + def __init__(self, access_token, server_url): + self.sets = Sets(access_token, server_url) + self.revisions = Revisions(access_token, server_url) + self.uploads = Uploads(access_token, server_url) + self.tiles = Tiles(access_token, server_url) \ No newline at end of file diff --git a/ProPyCore/access/drawings/revisions.py b/ProPyCore/access/drawings/revisions.py new file mode 100644 index 0000000..b9d7d68 --- /dev/null +++ b/ProPyCore/access/drawings/revisions.py @@ -0,0 +1,81 @@ +from ..base import Base +from ...exceptions import NotFoundItemError + +class Revisions(Base): + def __init__(self, access_token, server_url) -> None: + super().__init__(access_token, server_url) + + self.endpoint = "/rest/v1.0" + + def get(self, company_id, project_id, per_page=100): + """ + Gets all the available drawing revisions + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + per_page : int, default 100 + number of drawing revisions to include per page + + Returns + ------- + drawing_revisions : list + available drawing revisions data + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + n_revisions = 1 + page = 1 + drawing_revisions = [] + + while n_revisions > 0: + params = { + "page": page, + "per_page": per_page + } + + revision_selection = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_revisions", + additional_headers=headers, + params=params + ) + + n_revisions = len(revision_selection) + drawing_revisions += revision_selection + page += 1 + + return drawing_revisions + + def show(self, company_id, project_id, drawing_revision_id): + """ + Shows a specific drawing revision + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + drawing_revision_id : int + unique identifier for the drawing revision + + Returns + ------- + drawing_revision_info : dict + specific drawing revision information + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + drawing_revision_info = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_revisions/{drawing_revision_id}", + additional_headers=headers + ) + + return drawing_revision_info diff --git a/ProPyCore/access/drawings/sets.py b/ProPyCore/access/drawings/sets.py new file mode 100644 index 0000000..e83b637 --- /dev/null +++ b/ProPyCore/access/drawings/sets.py @@ -0,0 +1,52 @@ +from ..base import Base +from ...exceptions import NotFoundItemError + +class Sets(Base): + def __init__(self, access_token, server_url) -> None: + super().__init__(access_token, server_url) + + self.endpoint = "/rest/v1.0" + + def get(self, company_id, project_id, per_page=100): + """ + Gets all the available drawing sets + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + per_page : int, default 100 + number of drawing sets to include per page + + Returns + ------- + drawing_sets : list + available drawing sets data + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + n_sets = 1 + page = 1 + drawing_sets = [] + + while n_sets > 0: + params = { + "page": page, + "per_page": per_page + } + + set_selection = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_sets", + additional_headers=headers, + params=params + ) + + n_sets = len(set_selection) + drawing_sets += set_selection + page += 1 + + return drawing_sets diff --git a/ProPyCore/access/drawings/tiles.py b/ProPyCore/access/drawings/tiles.py new file mode 100644 index 0000000..175a41f --- /dev/null +++ b/ProPyCore/access/drawings/tiles.py @@ -0,0 +1,47 @@ +from ..base import Base + +class Tiles(Base): + def __init__(self, access_token, server_url) -> None: + super().__init__(access_token, server_url) + + self.endpoint = "/rest/v1.0" + + def get(self, company_id, project_id, drawing_revision_id, page=1, per_page=100): + """ + Gets all the available drawing tiles for a specific drawing revision + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + drawing_revision_id : int + unique identifier for the drawing revision + page : int, default 1 + page number + per_page : int, default 100 + number of drawing tiles to include per page + + Returns + ------- + drawing_tiles : list + available drawing tiles data + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + params = { + "project_id": project_id, + "page": page, + "per_page": per_page + } + + drawing_tiles = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_revisions/{drawing_revision_id}/drawing_tiles", + additional_headers=headers, + params=params + ) + + return drawing_tiles diff --git a/ProPyCore/access/drawings/uploads.py b/ProPyCore/access/drawings/uploads.py new file mode 100644 index 0000000..ebb17b2 --- /dev/null +++ b/ProPyCore/access/drawings/uploads.py @@ -0,0 +1,81 @@ +from ..base import Base +from ...exceptions import NotFoundItemError + +class Uploads(Base): + def __init__(self, access_token, server_url) -> None: + super().__init__(access_token, server_url) + + self.endpoint = "/rest/v1.1" + + def get(self, company_id, project_id, per_page=100): + """ + Gets all the available drawing uploads + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + per_page : int, default 100 + number of drawing uploads to include per page + + Returns + ------- + drawing_uploads : list + available drawing uploads data + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + n_uploads = 1 + page = 1 + drawing_uploads = [] + + while n_uploads > 0: + params = { + "page": page, + "per_page": per_page + } + + upload_selection = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_uploads", + additional_headers=headers, + params=params + ) + + n_uploads = len(upload_selection) + drawing_uploads += upload_selection + page += 1 + + return drawing_uploads + + def show(self, company_id, project_id, drawing_upload_id): + """ + Shows a specific drawing upload + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + drawing_upload_id : int + unique identifier for the drawing upload + + Returns + ------- + drawing_upload_info : dict + specific drawing upload information + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + + drawing_upload_info = self.get_request( + api_url=f"{self.endpoint}/projects/{project_id}/drawing_uploads/{drawing_upload_id}", + additional_headers=headers + ) + + return drawing_upload_info diff --git a/ProPyCore/access/projects.py b/ProPyCore/access/projects.py index 1d4fe1c..54cb8c9 100644 --- a/ProPyCore/access/projects.py +++ b/ProPyCore/access/projects.py @@ -11,7 +11,7 @@ def __init__(self, access_token, server_url) -> None: self.endpoint = "/rest/v1.1/projects" - def get(self, company_id, status="All",per_page=300): + def get(self, company_id, status="All", region=None, per_page=300): """ Gets a list of all the projects from a certain company https://developers.procore.com/reference/rest/projects?version=latest#list-projects @@ -24,6 +24,8 @@ def get(self, company_id, status="All",per_page=300): number of companies to include. Max is 300 per v1.1 API. status : str enum, default "All" status of the projects to get must be one of: ["Active", "Inactive", "All"] + region : str or list of str, default None - NOT IMPLMENTED + region of the projects to get Returns ------- diff --git a/ProPyCore/access/quality/punch.py b/ProPyCore/access/quality/punch.py index 5142955..d54d0fb 100644 --- a/ProPyCore/access/quality/punch.py +++ b/ProPyCore/access/quality/punch.py @@ -85,4 +85,34 @@ def show(self, company_id, project_id, punch_id): params=params ) - return punch_info \ No newline at end of file + return punch_info + + def get_assignment(self, company_id, project_id, assignment_id): + """ + Gets a specific punch item assignment + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + assignment_id : int + unique identifier for the punch item assignment + + Returns + ------- + assignment_info : dict + specific punch item assignment information + """ + + headers = { + "Procore-Company-Id": f"{company_id}" + } + + assignment_info = self.get_request( + api_url=f"/rest/v1.0/projects/{project_id}/punch_item_assignments/{assignment_id}", + additional_headers=headers + ) + + return assignment_info diff --git a/ProPyCore/access/submittals.py b/ProPyCore/access/submittals.py index 326cbcf..f0dec4d 100644 --- a/ProPyCore/access/submittals.py +++ b/ProPyCore/access/submittals.py @@ -33,7 +33,31 @@ def get_statuses(self, company_id, project_id): additional_headers=headers ) - def get(self, company_id, project_id, page=1, per_page=100, status_ids=None): + def get_types(self, company_id, project_id): + """ + Gets all the available submittal types + + Parameters + ---------- + company_id : int + unique identifier for the company + project_id : int + unique identifier for the project + + Returns + ------- + submittal_types : dict + available submittal types + """ + headers = { + "Procore-Company-Id": f"{company_id}" + } + return self.get_request( + api_url=f"{self.endpoint}/v1.0/projects/{project_id}/submittals/filter_options/type", + additional_headers=headers + ) + + def get(self, company_id, project_id, page=1, per_page=100, status_ids=None, types=None): """ Gets all the available submittals @@ -49,6 +73,8 @@ def get(self, company_id, project_id, page=1, per_page=100, status_ids=None): number of companies to include status_ids : list of int or str, default None filter by status ID + types : list of str, default None + filter by type Returns ------- @@ -73,6 +99,12 @@ def get(self, company_id, project_id, page=1, per_page=100, status_ids=None): else: params["filters[status_id]"] = [str(status_ids)] + if types is not None: + if isinstance(types, list): + params["filters[type]"] = [str(t) for t in types] + else: + params["filters[type]"] = [str(types)] + headers = { "Procore-Company-Id": f"{company_id}" } diff --git a/ProPyCore/procore.py b/ProPyCore/procore.py index d9f3dee..500173c 100644 --- a/ProPyCore/procore.py +++ b/ProPyCore/procore.py @@ -1,5 +1,5 @@ from .exceptions import * -from .access import companies, generic_tools, projects, documents, rfis, directory, submittals, tasks, budgets, direct_costs, cost_codes, time, quality, photos, permissions, change_events +from .access import companies, generic_tools, projects, documents, rfis, directory, submittals, tasks, budgets, direct_costs, cost_codes, time, quality, photos, permissions, change_events, drawings import requests class Procore: @@ -67,6 +67,8 @@ def _init_endpoints(self): self.time = time.Time(access_token=self.__access_token, server_url=self.__base_url) # Quality self.quality = quality.Quality(access_token=self.__access_token, server_url=self.__base_url) + # Drawings + self.drawings = drawings.Drawings(access_token=self.__access_token, server_url=self.__base_url) def get_access_token(self): """ diff --git a/setup.py b/setup.py index dda3c80..6383f6a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name="ProPyCore", - version="0.7.0", + version="0.8.0", author="Hagen E. Fritz", author_email="hfritz@r-o.com", description="Interact with Procore through Python for data connection applications", diff --git a/snippets/drawings.ipynb b/snippets/drawings.ipynb new file mode 100644 index 0000000..04eec71 --- /dev/null +++ b/snippets/drawings.ipynb @@ -0,0 +1,1130 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ProPyCore SDK Examples: Drawings\n", + "\n", + "This notebook contains snippets from the `drawings` submodules: `tiles.py`, `sets.py`, `revisions.py`, and `uploads.py`." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import dotenv\n", + "import json\n", + "\n", + "import ProPyCore" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup\n", + "You will need to create the connection to your Procore app and then get the details for your company and project.\n", + "\n", + "### Connection to Procore App\n", + "Ensure you have a `.env` file with the following information included:\n", + "* `CLIENT_ID`: your data connection app's client ID\n", + "* `CLIENT_SECRET`: your data connection app's client secret" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "dotenv.load_dotenv()\n", + "connection = ProPyCore.procore.Procore(\n", + " client_id=os.getenv(\"CLIENT_ID\"),\n", + " client_secret=os.getenv(\"CLIENT_SECRET\"),\n", + " redirect_uri=\"urn:ietf:wg:oauth:2.0:oob\", # default for data connection apps\n", + " oauth_url=\"https://app.procore.com\", # default for data connection apps\n", + " base_url=\"https://app.procore.com\" # default for data connection apps\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get Company Details\n", + "Use the cell below to specify your company name" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rogers-O`Brien Construction\n" + ] + } + ], + "source": [ + "companies = connection.companies.get()\n", + "for company in companies:\n", + " print(company[\"name\"])\n", + "\n", + "company_name = companies[0][\"name\"]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now get the company details" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "company = connection.companies.find(identifier=company_name)\n", + "projects = connection.projects.get(company_id=company[\"id\"])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get Project Details\n", + "Specify your project ID" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# Replace with your project ID\n", + "project_id = 2685112" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tiles\n", + "Below are snippets from the `tiles.py` submodule, allowing you to access drawing tiles." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.tiles.get()`\n", + "Fetches all the drawing tiles for a specific drawing revision" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"max_zoom_level\": 2,\n", + " \"tile_size\": [\n", + " 750,\n", + " 750\n", + " ],\n", + " \"zip_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/358220391_fba57cbd-101f-4628-919b-ee7cc1efbb31.zip?companyId=8089&projectId=2685112&sig=d986c201792264a7d38957d8a170c835c25e6054fadb77e3600ee000bf4438bb\",\n", + " \"tiles\": [\n", + " {\n", + " \"id\": 1,\n", + " \"x\": 0,\n", + " \"y\": 0,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 2,\n", + " \"x\": 1,\n", + " \"y\": 0,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 3,\n", + " \"x\": 2,\n", + " \"y\": 0,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 4,\n", + " \"x\": 0,\n", + " \"y\": 1,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 5,\n", + " \"x\": 1,\n", + " \"y\": 1,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 6,\n", + " \"x\": 2,\n", + " \"y\": 1,\n", + " \"z\": 0,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 7,\n", + " \"x\": 0,\n", + " \"y\": 0,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 8,\n", + " \"x\": 1,\n", + " \"y\": 0,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 9,\n", + " \"x\": 2,\n", + " \"y\": 0,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 10,\n", + " \"x\": 3,\n", + " \"y\": 0,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 11,\n", + " \"x\": 4,\n", + " \"y\": 0,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 12,\n", + " \"x\": 0,\n", + " \"y\": 1,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 13,\n", + " \"x\": 1,\n", + " \"y\": 1,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 14,\n", + " \"x\": 2,\n", + " \"y\": 1,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 15,\n", + " \"x\": 3,\n", + " \"y\": 1,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 16,\n", + " \"x\": 4,\n", + " \"y\": 1,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 17,\n", + " \"x\": 0,\n", + " \"y\": 2,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 18,\n", + " \"x\": 1,\n", + " \"y\": 2,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 19,\n", + " \"x\": 2,\n", + " \"y\": 2,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 20,\n", + " \"x\": 3,\n", + " \"y\": 2,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 21,\n", + " \"x\": 4,\n", + " \"y\": 2,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 22,\n", + " \"x\": 0,\n", + " \"y\": 3,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 23,\n", + " \"x\": 1,\n", + " \"y\": 3,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 24,\n", + " \"x\": 2,\n", + " \"y\": 3,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 25,\n", + " \"x\": 3,\n", + " \"y\": 3,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 26,\n", + " \"x\": 4,\n", + " \"y\": 3,\n", + " \"z\": 1,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 27,\n", + " \"x\": 0,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 28,\n", + " \"x\": 1,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 29,\n", + " \"x\": 2,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 30,\n", + " \"x\": 3,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 31,\n", + " \"x\": 4,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 32,\n", + " \"x\": 5,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 33,\n", + " \"x\": 6,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 34,\n", + " \"x\": 7,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 35,\n", + " \"x\": 8,\n", + " \"y\": 0,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 36,\n", + " \"x\": 0,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 37,\n", + " \"x\": 1,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 38,\n", + " \"x\": 2,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 39,\n", + " \"x\": 3,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 40,\n", + " \"x\": 4,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 41,\n", + " \"x\": 5,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 42,\n", + " \"x\": 6,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 43,\n", + " \"x\": 7,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 44,\n", + " \"x\": 8,\n", + " \"y\": 1,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 45,\n", + " \"x\": 0,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 46,\n", + " \"x\": 1,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 47,\n", + " \"x\": 2,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 48,\n", + " \"x\": 3,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 49,\n", + " \"x\": 4,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 50,\n", + " \"x\": 5,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 51,\n", + " \"x\": 6,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 52,\n", + " \"x\": 7,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 53,\n", + " \"x\": 8,\n", + " \"y\": 2,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 54,\n", + " \"x\": 0,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 55,\n", + " \"x\": 1,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 56,\n", + " \"x\": 2,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 57,\n", + " \"x\": 3,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 58,\n", + " \"x\": 4,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 59,\n", + " \"x\": 5,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 60,\n", + " \"x\": 6,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 61,\n", + " \"x\": 7,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 62,\n", + " \"x\": 8,\n", + " \"y\": 3,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 63,\n", + " \"x\": 0,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 64,\n", + " \"x\": 1,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 65,\n", + " \"x\": 2,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 66,\n", + " \"x\": 3,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 67,\n", + " \"x\": 4,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 68,\n", + " \"x\": 5,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 69,\n", + " \"x\": 6,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 70,\n", + " \"x\": 7,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 71,\n", + " \"x\": 8,\n", + " \"y\": 4,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 72,\n", + " \"x\": 0,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 73,\n", + " \"x\": 1,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 74,\n", + " \"x\": 2,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 75,\n", + " \"x\": 3,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 76,\n", + " \"x\": 4,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 77,\n", + " \"x\": 5,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 78,\n", + " \"x\": 6,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 79,\n", + " \"x\": 7,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 80,\n", + " \"x\": 8,\n", + " \"y\": 5,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 81,\n", + " \"x\": 0,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 82,\n", + " \"x\": 1,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 83,\n", + " \"x\": 2,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 84,\n", + " \"x\": 3,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 85,\n", + " \"x\": 4,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 86,\n", + " \"x\": 5,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 87,\n", + " \"x\": 6,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 88,\n", + " \"x\": 7,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " },\n", + " {\n", + " \"id\": 89,\n", + " \"x\": 8,\n", + " \"y\": 6,\n", + " \"z\": 2,\n", + " \"url\": \"deprecated\"\n", + " }\n", + " ]\n", + "}\n" + ] + } + ], + "source": [ + "# Replace with your drawing revision ID\n", + "drawing_revision_id = 358220391\n", + "\n", + "drawing_tile = connection.drawings.tiles.get(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " drawing_revision_id=drawing_revision_id,\n", + " per_page=100\n", + ")\n", + "\n", + "print(json.dumps(drawing_tile, indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Sets\n", + "Below are snippets from the `sets.py` submodule, allowing you to access drawing sets." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.sets.get()`\n", + "Fetches all the drawing sets for a project" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "ename": "NotFoundClientError", + "evalue": "\"404: Client ID doesn't exist\"", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mNotFoundClientError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[7]\u001b[39m\u001b[32m, line 1\u001b[39m\n\u001b[32m----> \u001b[39m\u001b[32m1\u001b[39m drawing_sets = \u001b[43mconnection\u001b[49m\u001b[43m.\u001b[49m\u001b[43mdrawings\u001b[49m\u001b[43m.\u001b[49m\u001b[43msets\u001b[49m\u001b[43m.\u001b[49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 2\u001b[39m \u001b[43m \u001b[49m\u001b[43mcompany_id\u001b[49m\u001b[43m=\u001b[49m\u001b[43mcompany\u001b[49m\u001b[43m[\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43mid\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 3\u001b[39m \u001b[43m \u001b[49m\u001b[43mproject_id\u001b[49m\u001b[43m=\u001b[49m\u001b[43mproject_id\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 4\u001b[39m \u001b[43m \u001b[49m\u001b[43mper_page\u001b[49m\u001b[43m=\u001b[49m\u001b[32;43m100\u001b[39;49m\n\u001b[32m 5\u001b[39m \u001b[43m)\u001b[49m\n\u001b[32m 7\u001b[39m \u001b[38;5;28mprint\u001b[39m(\u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33mFound \u001b[39m\u001b[38;5;132;01m{\u001b[39;00m\u001b[38;5;28mlen\u001b[39m(drawing_sets)\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m drawing sets\u001b[39m\u001b[33m\"\u001b[39m)\n\u001b[32m 8\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(drawing_sets) > \u001b[32m0\u001b[39m:\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/ProPyCore/ProPyCore/access/drawings/sets.py:40\u001b[39m, in \u001b[36mSets.get\u001b[39m\u001b[34m(self, company_id, project_id, page, per_page)\u001b[39m\n\u001b[32m 30\u001b[39m headers = {\n\u001b[32m 31\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mProcore-Company-Id\u001b[39m\u001b[33m\"\u001b[39m: \u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mcompany_id\u001b[38;5;132;01m}\u001b[39;00m\u001b[33m\"\u001b[39m\n\u001b[32m 32\u001b[39m }\n\u001b[32m 34\u001b[39m params = {\n\u001b[32m 35\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mproject_id\u001b[39m\u001b[33m\"\u001b[39m: project_id,\n\u001b[32m 36\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mpage\u001b[39m\u001b[33m\"\u001b[39m: page,\n\u001b[32m 37\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mper_page\u001b[39m\u001b[33m\"\u001b[39m: per_page\n\u001b[32m 38\u001b[39m }\n\u001b[32m---> \u001b[39m\u001b[32m40\u001b[39m drawing_sets = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mget_request\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 41\u001b[39m \u001b[43m \u001b[49m\u001b[43mapi_url\u001b[49m\u001b[43m=\u001b[49m\u001b[33;43mf\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[38;5;132;43;01m{\u001b[39;49;00m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mendpoint\u001b[49m\u001b[38;5;132;43;01m}\u001b[39;49;00m\u001b[33;43m/drawing_sets\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[32m 42\u001b[39m \u001b[43m \u001b[49m\u001b[43madditional_headers\u001b[49m\u001b[43m=\u001b[49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 43\u001b[39m \u001b[43m \u001b[49m\u001b[43mparams\u001b[49m\u001b[43m=\u001b[49m\u001b[43mparams\u001b[49m\n\u001b[32m 44\u001b[39m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 46\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m drawing_sets\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/ProPyCore/ProPyCore/access/base.py:58\u001b[39m, in \u001b[36mBase.get_request\u001b[39m\u001b[34m(self, api_url, additional_headers, params)\u001b[39m\n\u001b[32m 56\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m response.json()\n\u001b[32m 57\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m---> \u001b[39m\u001b[32m58\u001b[39m \u001b[43mraise_exception\u001b[49m\u001b[43m(\u001b[49m\u001b[43mresponse\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Projects/ProPyCore/ProPyCore/exceptions.py:77\u001b[39m, in \u001b[36mraise_exception\u001b[39m\u001b[34m(response)\u001b[39m\n\u001b[32m 74\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m NoPrivilegeError(\u001b[33mf\u001b[39m\u001b[33m\"\u001b[39m\u001b[33m403: Data connection app or permission template does not have access to this endpoint\u001b[39m\u001b[33m\"\u001b[39m, response.text)\n\u001b[32m 76\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m response.status_code == \u001b[32m404\u001b[39m:\n\u001b[32m---> \u001b[39m\u001b[32m77\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m NotFoundClientError(\u001b[33m'\u001b[39m\u001b[33m404: Client ID doesn\u001b[39m\u001b[38;5;130;01m\\'\u001b[39;00m\u001b[33mt exist\u001b[39m\u001b[33m'\u001b[39m, response.text)\n\u001b[32m 79\u001b[39m \u001b[38;5;28;01melif\u001b[39;00m response.status_code == \u001b[32m422\u001b[39m:\n\u001b[32m 80\u001b[39m \u001b[38;5;28;01mraise\u001b[39;00m UnprocessableContentError(\u001b[33m'\u001b[39m\u001b[33m422: A field that needs a unique value already exists\u001b[39m\u001b[33m'\u001b[39m, response.text)\n", + "\u001b[31mNotFoundClientError\u001b[39m: \"404: Client ID doesn't exist\"" + ] + } + ], + "source": [ + "drawing_sets = connection.drawings.sets.get(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " per_page=100\n", + ")\n", + "\n", + "print(f\"Found {len(drawing_sets)} drawing sets\")\n", + "if len(drawing_sets) > 0:\n", + " print(f\"\\nFirst set:\")\n", + " print(json.dumps(drawing_sets[0], indent=4))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Replace with your drawing set ID\n", + "drawing_set_id = 12345\n", + "\n", + "drawing_set = connection.drawings.sets.show(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " drawing_set_id=drawing_set_id\n", + ")\n", + "\n", + "print(json.dumps(drawing_set, indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Revisions\n", + "Below are snippets from the `revisions.py` submodule, allowing you to access drawing revisions." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.revisions.get()`\n", + "Fetches all the drawing revisions for a project" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found 2283 drawing revisions\n", + "\n", + "First revision:\n", + "{\n", + " \"id\": 272725310,\n", + " \"drawing_date\": \"2023-11-30\",\n", + " \"received_date\": \"2023-12-05\",\n", + " \"revision_number\": \"0\",\n", + " \"drawing_id\": 119712792,\n", + " \"custom_fields\": {},\n", + " \"floorplan\": false,\n", + " \"current\": false,\n", + " \"drawing_set\": {\n", + " \"id\": 6709811\n", + " },\n", + " \"drawing_sketches_count\": 0,\n", + " \"number\": \"A00-00\",\n", + " \"title\": \"STANDARDS AND SYMBOLS\",\n", + " \"has_public_markup_layer_elements\": false,\n", + " \"has_drawing_sketches\": false,\n", + " \"activity_stream_last_viewed_at\": null,\n", + " \"status\": \"published\",\n", + " \"obsolete\": false,\n", + " \"discipline\": {\n", + " \"id\": 9446240,\n", + " \"name\": \"Architectural\",\n", + " \"position\": null\n", + " },\n", + " \"height\": 4571,\n", + " \"pdf_size\": 2852313,\n", + " \"pdf_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/2b1e91a7-87d4-4b14-b337-543165685cd2_production_1702066668_c25797889_p1.pdf?companyId=8089&projectId=2685112&sig=3b416e401b97816998267aab04df5c74736f4e0736ff4b91d19b79060deb78cc\",\n", + " \"png_size\": 5533143,\n", + " \"png_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/403aa6aa-876b-4aa7-9618-1d7812c90404_production_1702066671_c25797889_p1.png?companyId=8089&projectId=2685112&sig=04632ab13bdd9f2b33713faab3fc29b51e2dcb69e32eaa168cb119a0de0fe5f4\",\n", + " \"updated_at\": \"2023-12-11T16:15:00Z\",\n", + " \"width\": 6400,\n", + " \"large_thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/95644eb823fa924c70f1f6f34592c46c337a_4409066991_thumbnail_large_production.PNG?companyId=8089&projectId=2685112&sig=ce68dc0ae3cb8327ac26b34a6c750699642feb99890eb38c60a1ed30c8e66686\",\n", + " \"position\": null,\n", + " \"order_in_drawing\": 3,\n", + " \"zip_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/272725310_09c56168-fd28-488b-b2b6-8e42b710d17c.zip?companyId=8089&projectId=2685112&sig=86ce853e52ca7da863474d99dd3ff210a92725d4f81ca2557cb12015bd41d005\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/2c72629838365df9a9418283db926d66ab8d_4409066991_thumbnail_small_production.PNG?companyId=8089&projectId=2685112&sig=abc61c5f93c366008274bebecc8fca714a5e0e63b459bb9c0b214a487bfa0f0b\",\n", + " \"drawing_area\": {\n", + " \"id\": 2189052\n", + " }\n", + "}\n" + ] + } + ], + "source": [ + "drawing_revisions = connection.drawings.revisions.get(\n", + " company_id=company[\"id\"],\n", + " project_id=2685112,\n", + " per_page=100\n", + ")\n", + "\n", + "print(f\"Found {len(drawing_revisions)} drawing revisions\")\n", + "if len(drawing_revisions) > 0:\n", + " print(f\"\\nFirst revision:\")\n", + " print(json.dumps(drawing_revisions[0], indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.revisions.show()`\n", + "Show information from a single drawing revision" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"id\": 358220391,\n", + " \"drawing_date\": \"2025-08-27\",\n", + " \"received_date\": null,\n", + " \"revision_number\": \"0\",\n", + " \"drawing_id\": 156014309,\n", + " \"custom_fields\": {},\n", + " \"floorplan\": false,\n", + " \"current\": true,\n", + " \"drawing_set\": {\n", + " \"id\": 8962517,\n", + " \"name\": \"Punch List Drawing Set\",\n", + " \"date\": \"2025-08-27\"\n", + " },\n", + " \"drawing_sketches_count\": 0,\n", + " \"number\": \"MEP01-03\",\n", + " \"title\": \"MEP FLOOR PLAN - PHASE ONE - LEVEL THREE - OVERALL\",\n", + " \"has_public_markup_layer_elements\": true,\n", + " \"has_drawing_sketches\": false,\n", + " \"activity_stream_last_viewed_at\": null,\n", + " \"status\": \"published\",\n", + " \"obsolete\": false,\n", + " \"discipline\": {\n", + " \"id\": 9446335,\n", + " \"name\": \"Mechanical\",\n", + " \"position\": null\n", + " },\n", + " \"connectability_outdated\": false,\n", + " \"height\": 4571,\n", + " \"pdf_size\": 1442803,\n", + " \"pdf_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/8089/2685112/05a352bb-cf7f-4814-8383-a238278106bc_production_1756324555_c43739640_p8.pdf?companyId=8089&projectId=2685112&sig=44cb608c276b709e90c376229309a4837fda6440b2328a0cc57b3857aca6acc8\",\n", + " \"png_size\": 2073710,\n", + " \"png_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/8089/2685112/50c8299d-69fb-432d-87cb-dd7e2af185cc_production_1756324555_c43739640_p8.png?companyId=8089&projectId=2685112&sig=a8ab4aa961fa1d560f19057cb6cb03937d826a68ce2ba4ca63d9f1b6fd00d101\",\n", + " \"updated_at\": \"2025-10-29T19:41:57Z\",\n", + " \"width\": 6400,\n", + " \"large_thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/a7ecde1b-7c73-455a-b5f0-f5bc1840acae_5653703426_production_thumbnail_large?companyId=8089&projectId=2685112&sig=4aeaa0cb0bddb11192c7672fdf0f32a774dc8f29b99c72bc85effb95f538c2cb\",\n", + " \"position\": null,\n", + " \"order_in_drawing\": 0,\n", + " \"zip_url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/358220391_fba57cbd-101f-4628-919b-ee7cc1efbb31.zip?companyId=8089&projectId=2685112&sig=d986c201792264a7d38957d8a170c835c25e6054fadb77e3600ee000bf4438bb\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/a7ecde1b-7c73-455a-b5f0-f5bc1840acae_5653703426_production_thumbnail_small?companyId=8089&projectId=2685112&sig=7d48f2b252c8cca096125f3fac19b6121ae07964fa316f386979e578619659f6\",\n", + " \"drawing_area\": {\n", + " \"id\": 2360649\n", + " }\n", + "}\n" + ] + } + ], + "source": [ + "# Replace with your drawing revision ID\n", + "drawing_revision_id = 358220391\n", + "\n", + "drawing_revision = connection.drawings.revisions.show(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " drawing_revision_id=drawing_revision_id\n", + ")\n", + "\n", + "print(json.dumps(drawing_revision, indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "---" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Uploads\n", + "Below are snippets from the `uploads.py` submodule, allowing you to access drawing uploads." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.uploads.get()`\n", + "Fetches all the drawing uploads for a project" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "drawing_uploads = connection.drawings.uploads.get(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " per_page=100\n", + ")\n", + "\n", + "print(f\"Found {len(drawing_uploads)} drawing uploads\")\n", + "if len(drawing_uploads) > 0:\n", + " print(f\"\\nFirst upload:\")\n", + " print(json.dumps(drawing_uploads[0], indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `drawings.uploads.show()`\n", + "Show information from a single drawing upload" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Replace with your drawing upload ID\n", + "drawing_upload_id = 12345\n", + "\n", + "drawing_upload = connection.drawings.uploads.show(\n", + " company_id=company[\"id\"],\n", + " project_id=project_id,\n", + " drawing_upload_id=drawing_upload_id\n", + ")\n", + "\n", + "print(json.dumps(drawing_upload, indent=4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.13.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/snippets/projects.ipynb b/snippets/projects.ipynb index de570f0..7a5eb1b 100644 --- a/snippets/projects.ipynb +++ b/snippets/projects.ipynb @@ -11,7 +11,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -37,7 +37,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -61,7 +61,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -77,7 +77,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -124,7 +124,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -160,7 +160,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -366,7 +366,6 @@ "Project: Financial Tool and Action Plan Test (1258045)\n", "Project: Financial Tools Test Project (1445182)\n", "Project: Financial Tools Test Project (2915114)\n", - "Project: Financial Tools Test Project (2915822)\n", "Project: Flex - Mevex II (2426831)\n", "Project: Flex - Trinity Slab Replacement (1487934)\n", "Project: Flex Mod G Cleanroom Renovations (2630457)\n", @@ -497,6 +496,7 @@ "Project: Prime DFW01-02 (2844627)\n", "Project: Procore Connect Test Project (1337442)\n", "Project: Procore Test Project 3 (1632011)\n", + "Project: Project Compass Test Project (2915822)\n", "Project: Project Pike - Niagara Bottling (1994592)\n", "Project: Punch Test (881505)\n", "Project: QTS DFW1 - DC5 (2136703)\n", @@ -660,13 +660,77 @@ "source": [ "company = connection.companies.find(identifier=company_name)\n", "projects = connection.projects.get(\n", - " company_id=company[\"id\"],\n", - " #status=\"Active\"\n", + " company_id=company[\"id\"]\n", ")\n", "for project in projects:\n", " print(f\"Project: {project['name']} ({project['id']})\")" ] }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"Project Compass Test Project\" in [project[\"name\"] for project in projects]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Filtering" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "Projects.get() got an unexpected keyword argument 'by_status'. Did you mean 'status'?", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mTypeError\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[9]\u001b[39m\u001b[32m, line 2\u001b[39m\n\u001b[32m 1\u001b[39m company = connection.companies.find(identifier=company_name)\n\u001b[32m----> \u001b[39m\u001b[32m2\u001b[39m projects = \u001b[43mconnection\u001b[49m\u001b[43m.\u001b[49m\u001b[43mprojects\u001b[49m\u001b[43m.\u001b[49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\n\u001b[32m 3\u001b[39m \u001b[43m \u001b[49m\u001b[43mcompany_id\u001b[49m\u001b[43m=\u001b[49m\u001b[43mcompany\u001b[49m\u001b[43m[\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43mid\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\n\u001b[32m 4\u001b[39m \u001b[43m \u001b[49m\u001b[43mby_status\u001b[49m\u001b[43m=\u001b[49m\u001b[33;43m\"\u001b[39;49m\u001b[33;43mAll\u001b[39;49m\u001b[33;43m\"\u001b[39;49m\n\u001b[32m 5\u001b[39m \u001b[43m)\u001b[49m\n\u001b[32m 6\u001b[39m projects_austin = connection.projects.get(\n\u001b[32m 7\u001b[39m company_id=company[\u001b[33m\"\u001b[39m\u001b[33mid\u001b[39m\u001b[33m\"\u001b[39m],\n\u001b[32m 8\u001b[39m by_region=\u001b[33m\"\u001b[39m\u001b[33mAustin\u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 9\u001b[39m )\n\u001b[32m 10\u001b[39m projects_active_austin = connection.projects.get(\n\u001b[32m 11\u001b[39m company_id=company[\u001b[33m\"\u001b[39m\u001b[33mid\u001b[39m\u001b[33m\"\u001b[39m],\n\u001b[32m 12\u001b[39m by_region=\u001b[33m\"\u001b[39m\u001b[33mAustin\u001b[39m\u001b[33m\"\u001b[39m,\n\u001b[32m 13\u001b[39m by_status=\u001b[33m\"\u001b[39m\u001b[33mActive\u001b[39m\u001b[33m\"\u001b[39m\n\u001b[32m 14\u001b[39m )\n", + "\u001b[31mTypeError\u001b[39m: Projects.get() got an unexpected keyword argument 'by_status'. Did you mean 'status'?" + ] + } + ], + "source": [ + "company = connection.companies.find(identifier=company_name)\n", + "projects = connection.projects.get(\n", + " company_id=company[\"id\"],\n", + " by_status=\"All\"\n", + ")\n", + "projects_austin = connection.projects.get(\n", + " company_id=company[\"id\"],\n", + " by_region=\"Austin\"\n", + ")\n", + "projects_active_austin = connection.projects.get(\n", + " company_id=company[\"id\"],\n", + " by_region=\"Austin\",\n", + " by_status=\"Active\"\n", + ")\n", + "\n", + "print(f\"All Projects: {len(projects)}\")\n", + "print(f\"Austin Projects: {len(projects_austin)}\")\n", + "print(f\"Active Austin Projects: {len(projects_active_austin)}\")" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -700,7 +764,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -887,7 +951,21 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "found_project = connection.projects.find(\n", + " company_id=company[\"id\"],\n", + " identifier=\"Project Compass Test Project\"\n", + ")\n", + "print(json.dumps(found_project, indent=4))\n", + "print(found_project.keys())" + ] + }, + { + "cell_type": "code", + "execution_count": null, "metadata": {}, "outputs": [ { @@ -945,7 +1023,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "metadata": {}, "outputs": [ { diff --git a/snippets/quality.ipynb b/snippets/quality.ipynb index 31dfe03..232da4b 100644 --- a/snippets/quality.ipynb +++ b/snippets/quality.ipynb @@ -11,7 +11,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -37,7 +37,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -61,7 +61,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -89,7 +89,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -115,25 +115,127 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Punch Item: Concrete Imperfection (44070403)\n" + "Punch Item: Install WAPs (69375284)\n", + "{\n", + " \"id\": 69375284,\n", + " \"assignees\": [\n", + " {\n", + " \"id\": 8340574,\n", + " \"login\": \"jason.lavello@e2optics.com\",\n", + " \"name\": \"Jason Lavello\"\n", + " }\n", + " ],\n", + " \"assignments\": [\n", + " {\n", + " \"id\": 96742086,\n", + " \"approved\": true,\n", + " \"attachments\": [\n", + " {\n", + " \"id\": 5709027027,\n", + " \"filename\": \"201D845C-4799-46FE-A2AA-47A3A05F4BDB.jpg\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923191000_production_b15ad41d99af5dc6121a13283814ba50077a?companyId=8089&projectId=2685112&sig=7eef70db946c1a1e2fcb3d8a95867408d8b39401202ad036e7d19d9d00a083d9\"\n", + " },\n", + " {\n", + " \"id\": 5709026968,\n", + " \"filename\": \"E9581A1B-30EE-42EE-8C41-1833BA67EB41.jpg\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923190959_production_1f9d61ef6110f280b10f6ef31a97e3276bba?companyId=8089&projectId=2685112&sig=cd88d0df01b916c80637b862639d6c6ba2f9d2cf68851829d8c0cb6931fb5b2e\"\n", + " }\n", + " ],\n", + " \"comment\": \"\",\n", + " \"login_information\": {\n", + " \"id\": 8340574,\n", + " \"login\": \"jason.lavello@e2optics.com\",\n", + " \"name\": \"Jason Lavello\"\n", + " },\n", + " \"login_information_id\": 8340574,\n", + " \"login_information_name\": \"Jason Lavello\",\n", + " \"manager_accepted_at\": \"2025-09-27T15:34:10Z\",\n", + " \"name\": \"Jason Lavello\",\n", + " \"notified_at\": \"2025-09-22T21:50:56Z\",\n", + " \"responded_at\": \"2025-09-23T19:10:00Z\",\n", + " \"status\": \"resolved\",\n", + " \"updated_at\": \"2025-09-27T15:34:10Z\",\n", + " \"user_name\": \"Jason Lavello\",\n", + " \"vendor\": {\n", + " \"id\": 8808026,\n", + " \"name\": \"E2 Optics, LLC\"\n", + " }\n", + " }\n", + " ],\n", + " \"ball_in_court\": [],\n", + " \"closed_at\": \"2025-09-27T15:34:11Z\",\n", + " \"closed_by\": {\n", + " \"id\": 5880598,\n", + " \"login\": \"glopez@r-o.com\",\n", + " \"name\": \"Greg Lopez\"\n", + " },\n", + " \"cost_code\": null,\n", + " \"cost_impact\": null,\n", + " \"cost_impact_amount\": null,\n", + " \"created_at\": \"2025-09-22T15:02:58Z\",\n", + " \"created_by\": {\n", + " \"id\": 8944057,\n", + " \"login\": \"pvan@r-o.com\",\n", + " \"name\": \"Pauline Van\"\n", + " },\n", + " \"custom_fields\": {},\n", + " \"deleted_at\": null,\n", + " \"description\": null,\n", + " \"due_date\": \"2025-09-25\",\n", + " \"final_approver\": {\n", + " \"id\": 3228698,\n", + " \"login\": \"ecarcamo@teliospc.com\",\n", + " \"name\": \"Emilio Carcamo\"\n", + " },\n", + " \"has_resolved_responses\": true,\n", + " \"has_unresolved_responses\": false,\n", + " \"location\": {\n", + " \"id\": 31916822,\n", + " \"created_at\": \"2025-01-23T20:06:37Z\",\n", + " \"name\": \"Level 3>DATA HALL 2332 (13)\",\n", + " \"node_name\": \"DATA HALL 2332 (13)\",\n", + " \"parent_id\": 28453337,\n", + " \"updated_at\": \"2025-06-20T18:40:44Z\"\n", + " },\n", + " \"manager_notified_at\": \"2025-09-22T15:02:58Z\",\n", + " \"name\": \"Install WAPs\",\n", + " \"overdue\": false,\n", + " \"position\": 59,\n", + " \"priority\": null,\n", + " \"private\": false,\n", + " \"punch_item_manager\": {\n", + " \"id\": 8944057,\n", + " \"login\": \"pvan@r-o.com\",\n", + " \"name\": \"Pauline Van\"\n", + " },\n", + " \"punch_item_type\": null,\n", + " \"reference\": null,\n", + " \"schedule_impact\": null,\n", + " \"schedule_impact_days\": null,\n", + " \"status\": \"Closed\",\n", + " \"trade\": null,\n", + " \"updated_at\": \"2025-09-29T13:17:25Z\",\n", + " \"workflow_status\": \"closed\"\n", + "}\n" ] } ], "source": [ "punch_items = connection.quality.punch.get(\n", " company_id=company[\"id\"],\n", - " project_id=1668030,\n", + " project_id=2685112,\n", " per_page=10000\n", ")\n", "\n", - "print(f\"Punch Item: {punch_items[0]['name']} ({punch_items[0]['id']})\")" + "print(f\"Punch Item: {punch_items[55]['name']} ({punch_items[55]['id']})\")\n", + "print(json.dumps(punch_items[55], indent=4))" ] }, { @@ -146,17 +248,226 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"id\": 69375284,\n", + " \"attachments\": [\n", + " {\n", + " \"id\": 5704762334,\n", + " \"content_type\": \"image/jpeg\",\n", + " \"filename\": \"FD979492-0810-4875-B735-FB60FBC5BDBC.jpg\",\n", + " \"name\": \"FD979492-0810-4875-B735-FB60FBC5BDBC.jpg\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/39d1a3c5-23ff-4d29-8d07-c01c5f2b5d1c_5704762334_production_thumbnail_large?companyId=8089&projectId=2685112&sig=a908f5e2be924253178839126e0793eebd5e06b012189b0173d71183800e4d11\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K5RZ5VWM3FSS8493XWQ2QVBJ?companyId=8089&projectId=2685112&sig=b3806835835526c8d657ba357bd9a6cf36acbe7c5762f4d9a0f12c01ebe30d05\",\n", + " \"can_be_viewed\": true,\n", + " \"viewable\": true\n", + " }\n", + " ],\n", + " \"ball_in_court\": [],\n", + " \"can_email\": true,\n", + " \"closed_at\": \"2025-09-27T15:34:11Z\",\n", + " \"comments\": [],\n", + " \"cost_impact\": null,\n", + " \"cost_impact_amount\": null,\n", + " \"created_at\": \"2025-09-22T15:02:58Z\",\n", + " \"current_drawing_revision_ids\": [\n", + " 358220391\n", + " ],\n", + " \"custom_fields\": {},\n", + " \"date_initiated\": \"2025-09-22T15:02:58Z\",\n", + " \"deleted_at\": null,\n", + " \"description\": \"\",\n", + " \"drawing_ids\": [\n", + " 156014309\n", + " ],\n", + " \"due_date\": \"2025-09-25\",\n", + " \"due_tomorrow\": false,\n", + " \"has_attachments\": true,\n", + " \"images\": [],\n", + " \"manager_notified_at\": \"2025-09-22T15:02:58Z\",\n", + " \"name\": \"Install WAPs\",\n", + " \"overdue\": false,\n", + " \"position\": 59,\n", + " \"priority\": null,\n", + " \"private\": false,\n", + " \"reference\": null,\n", + " \"schedule_impact\": null,\n", + " \"schedule_impact_days\": null,\n", + " \"schedule_risk\": null,\n", + " \"schedule_risk_confidence\": null,\n", + " \"schedule_risk_probability\": null,\n", + " \"schedule_risk_reason\": null,\n", + " \"should_display_risk_flag\": false,\n", + " \"status\": \"Closed\",\n", + " \"updated_at\": \"2025-09-29T13:17:25Z\",\n", + " \"uuid\": \"9a653d9e7f54c5c83f490def276c33d2dc12\",\n", + " \"web_images\": [\n", + " {\n", + " \"id\": 5704762334,\n", + " \"content_type\": \"image/jpeg\",\n", + " \"filename\": \"FD979492-0810-4875-B735-FB60FBC5BDBC.jpg\",\n", + " \"name\": \"FD979492-0810-4875-B735-FB60FBC5BDBC.jpg\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/39d1a3c5-23ff-4d29-8d07-c01c5f2b5d1c_5704762334_production_thumbnail_large?companyId=8089&projectId=2685112&sig=a908f5e2be924253178839126e0793eebd5e06b012189b0173d71183800e4d11\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K5RZ5VWM3FSS8493XWQ2QVBJ?companyId=8089&projectId=2685112&sig=b3806835835526c8d657ba357bd9a6cf36acbe7c5762f4d9a0f12c01ebe30d05\"\n", + " }\n", + " ],\n", + " \"workflow_status\": \"closed\",\n", + " \"rich_text_description\": null,\n", + " \"closed_by\": {\n", + " \"id\": 5880598,\n", + " \"login\": \"glopez@r-o.com\",\n", + " \"name\": \"Greg Lopez\",\n", + " \"company_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " \"created_by\": {\n", + " \"id\": 8944057,\n", + " \"login\": \"pvan@r-o.com\",\n", + " \"name\": \"Pauline Van\",\n", + " \"company_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " \"final_approver\": {\n", + " \"id\": 3228698,\n", + " \"login\": \"ecarcamo@teliospc.com\",\n", + " \"name\": \"Emilio Carcamo\",\n", + " \"company_name\": \"Telios Corporation\"\n", + " },\n", + " \"punch_item_manager\": {\n", + " \"id\": 8944057,\n", + " \"login\": \"pvan@r-o.com\",\n", + " \"name\": \"Pauline Van\",\n", + " \"company_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " \"distribution_members\": [],\n", + " \"assignments\": [\n", + " {\n", + " \"id\": 96742086,\n", + " \"approved\": true,\n", + " \"attachments\": [\n", + " {\n", + " \"id\": 5709027027,\n", + " \"content_type\": \"image/jpeg\",\n", + " \"filename\": \"201D845C-4799-46FE-A2AA-47A3A05F4BDB.jpg\",\n", + " \"name\": \"201D845C-4799-46FE-A2AA-47A3A05F4BDB.jpg\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/2ca7c747-febd-466b-90ef-cc19bd2d3ad2_5709027027_production_thumbnail_large?companyId=8089&projectId=2685112&sig=d6dd556e2c5239f208032f90f1f7639c962edefd7b9dfcde1675a8cc5bdaee46\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923191000_production_b15ad41d99af5dc6121a13283814ba50077a?companyId=8089&projectId=2685112&sig=7eef70db946c1a1e2fcb3d8a95867408d8b39401202ad036e7d19d9d00a083d9\"\n", + " },\n", + " {\n", + " \"id\": 5709026968,\n", + " \"content_type\": \"image/jpeg\",\n", + " \"filename\": \"E9581A1B-30EE-42EE-8C41-1833BA67EB41.jpg\",\n", + " \"name\": \"E9581A1B-30EE-42EE-8C41-1833BA67EB41.jpg\",\n", + " \"thumbnail_url\": \"https://storage.procore.com/api/v5/files/us-east-1/prostore-thumbnail-bucket-production/3f87b2fb-60d4-43e2-b0ab-18a7c3b4735a_5709026968_production_thumbnail_large?companyId=8089&projectId=2685112&sig=4e265c3d16b87920943d3c189bf15e36dc19208eefb44d288322929a9ae28c5c\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923190959_production_1f9d61ef6110f280b10f6ef31a97e3276bba?companyId=8089&projectId=2685112&sig=cd88d0df01b916c80637b862639d6c6ba2f9d2cf68851829d8c0cb6931fb5b2e\"\n", + " }\n", + " ],\n", + " \"comment\": \"\",\n", + " \"login_information\": {\n", + " \"id\": 8340574,\n", + " \"login\": \"jason.lavello@e2optics.com\",\n", + " \"name\": \"Jason Lavello\",\n", + " \"active\": true\n", + " },\n", + " \"manager_accepted_at\": \"2025-09-27T15:34:10Z\",\n", + " \"notified_at\": \"2025-09-22T21:50:56Z\",\n", + " \"responded_at\": \"2025-09-23T19:10:00Z\",\n", + " \"status\": \"resolved\",\n", + " \"updated_at\": \"2025-09-27T15:34:10Z\",\n", + " \"vendor\": {\n", + " \"id\": 8808026,\n", + " \"name\": \"E2 Optics, LLC\"\n", + " },\n", + " \"ready_for_review_at\": \"2025-09-23T19:10:00Z\",\n", + " \"work_not_accepted_at\": null,\n", + " \"formatted_status\": \"Resolved\"\n", + " }\n", + " ],\n", + " \"location\": {\n", + " \"id\": 31916822,\n", + " \"name\": \"Level 3>DATA HALL 2332 (13)\",\n", + " \"node_name\": \"DATA HALL 2332 (13)\",\n", + " \"parent_id\": 28453337,\n", + " \"created_at\": \"2025-01-23T20:06:37Z\",\n", + " \"updated_at\": \"2025-06-20T18:40:44Z\"\n", + " },\n", + " \"trade\": null,\n", + " \"punch_item_type\": null,\n", + " \"cost_code\": null\n", + "}\n" + ] + } + ], "source": [ "punch_item = connection.quality.punch.show(\n", " company_id=company[\"id\"],\n", - " project_id=1668030,\n", - " punch_id=44070403\n", + " project_id=2685112,\n", + " punch_id=69375284\n", ")\n", "\n", - "#print(json.dumps(punch_item, indent=4))" + "print(json.dumps(punch_item, indent=4))" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{\n", + " \"id\": 96742086,\n", + " \"approved\": true,\n", + " \"comment\": \"\",\n", + " \"login_information_id\": 8340574,\n", + " \"login_information_name\": \"Jason Lavello\",\n", + " \"login_information\": {\n", + " \"id\": 8340574,\n", + " \"login\": \"jason.lavello@e2optics.com\",\n", + " \"name\": \"Jason Lavello\",\n", + " \"company_name\": \"E2 Optics, LLC\"\n", + " },\n", + " \"name\": \"Jason Lavello\",\n", + " \"attachments\": [\n", + " {\n", + " \"id\": 5709027027,\n", + " \"filename\": \"201D845C-4799-46FE-A2AA-47A3A05F4BDB.jpg\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923191000_production_b15ad41d99af5dc6121a13283814ba50077a?companyId=8089&projectId=2685112&sig=7eef70db946c1a1e2fcb3d8a95867408d8b39401202ad036e7d19d9d00a083d9\"\n", + " },\n", + " {\n", + " \"id\": 5709026968,\n", + " \"filename\": \"E9581A1B-30EE-42EE-8C41-1833BA67EB41.jpg\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/prostore/8089/20250923190959_production_1f9d61ef6110f280b10f6ef31a97e3276bba?companyId=8089&projectId=2685112&sig=cd88d0df01b916c80637b862639d6c6ba2f9d2cf68851829d8c0cb6931fb5b2e\"\n", + " }\n", + " ],\n", + " \"vendor\": {\n", + " \"id\": 8808026,\n", + " \"name\": \"E2 Optics, LLC\"\n", + " },\n", + " \"notified_at\": \"2025-09-22T21:50:56Z\",\n", + " \"responded_at\": \"2025-09-23T19:10:00Z\",\n", + " \"status\": \"resolved\",\n", + " \"manager_accepted_at\": \"2025-09-27T15:34:10Z\",\n", + " \"updated_at\": \"2025-09-27T15:34:10Z\",\n", + " \"user_name\": \"Jason Lavello\"\n", + "}\n" + ] + } + ], + "source": [ + "punch_assignments = connection.quality.punch.get_assignment(\n", + " company_id=company[\"id\"],\n", + " project_id=2685112,\n", + " assignment_id=96742086\n", + ")\n", + "\n", + "print(json.dumps(punch_assignments, indent=4))" ] }, { @@ -165,11 +476,28 @@ "source": [ "---" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test #1 \n", + "[Punch Item #59](https://app.procore.com/webclients/host/companies/8089/projects/2685112/tools/punchlist/details/69375284)\n", + "- punch_id = 69375284\n", + "- assignment_id = 96742086\n", + "\n", + "The assignment had the two attachments!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] } ], "metadata": { "kernelspec": { - "display_name": ".venv_doc", + "display_name": ".venv", "language": "python", "name": "python3" }, @@ -183,7 +511,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.9" + "version": "3.13.3" } }, "nbformat": 4, diff --git a/snippets/submittals.ipynb b/snippets/submittals.ipynb index bc8eb1b..fe5e7c6 100644 --- a/snippets/submittals.ipynb +++ b/snippets/submittals.ipynb @@ -18,6 +18,7 @@ "import os\n", "import dotenv\n", "import json\n", + "import csv\n", "\n", "import ProPyCore" ] @@ -124,7 +125,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -145,18 +146,10 @@ " \"value\": \"Approved / No Exceptions Taken\"\n", " },\n", " {\n", - " \"key\": 4092,\n", - " \"value\": \"Approved as Noted\"\n", - " },\n", - " {\n", " \"key\": 4095,\n", " \"value\": \"Revise and Resubmit\"\n", " },\n", " {\n", - " \"key\": 6113,\n", - " \"value\": \"Submitted for Approval\"\n", - " },\n", - " {\n", " \"key\": 4098,\n", " \"value\": \"Void\"\n", " }\n", @@ -173,6 +166,121 @@ "print(json.dumps(statuses, indent=4))" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### `submittals.get_types()`\n", + "```python\n", + "\"\"\"\n", + "Gets all the available submittal types\n", + "\n", + "Parameters\n", + "----------\n", + "company_id : int\n", + " unique identifier for the company\n", + "project_id : int\n", + " unique identifier for the project\n", + "\n", + "Returns\n", + "-------\n", + "submittal_types : dict\n", + " available submittal types\n", + "\"\"\"\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[\n", + " {\n", + " \"key\": \"Attic Stock\",\n", + " \"value\": \"Attic Stock\"\n", + " },\n", + " {\n", + " \"key\": \"BIM\",\n", + " \"value\": \"BIM\"\n", + " },\n", + " {\n", + " \"key\": \"Calculations\",\n", + " \"value\": \"Calculations\"\n", + " },\n", + " {\n", + " \"key\": \"Certificates / Certifications\",\n", + " \"value\": \"Certificates / Certifications\"\n", + " },\n", + " {\n", + " \"key\": \"LEED Data\",\n", + " \"value\": \"LEED Data\"\n", + " },\n", + " {\n", + " \"key\": \"Mock-up\",\n", + " \"value\": \"Mock-up\"\n", + " },\n", + " {\n", + " \"key\": \"O&M Manual\",\n", + " \"value\": \"O&M Manual\"\n", + " },\n", + " {\n", + " \"key\": \"O&M Training\",\n", + " \"value\": \"O&M Training\"\n", + " },\n", + " {\n", + " \"key\": \"Other\",\n", + " \"value\": \"Other\"\n", + " },\n", + " {\n", + " \"key\": \"Product Data\",\n", + " \"value\": \"Product Data\"\n", + " },\n", + " {\n", + " \"key\": \"Record Submittal - As-Builts\",\n", + " \"value\": \"Record Submittal - As-Builts\"\n", + " },\n", + " {\n", + " \"key\": \"Record Submittal - Photos\",\n", + " \"value\": \"Record Submittal - Photos\"\n", + " },\n", + " {\n", + " \"key\": \"Record Submittal - Reports\",\n", + " \"value\": \"Record Submittal - Reports\"\n", + " },\n", + " {\n", + " \"key\": \"Sample\",\n", + " \"value\": \"Sample\"\n", + " },\n", + " {\n", + " \"key\": \"Schedule\",\n", + " \"value\": \"Schedule\"\n", + " },\n", + " {\n", + " \"key\": \"Shop Drawing\",\n", + " \"value\": \"Shop Drawing\"\n", + " },\n", + " {\n", + " \"key\": \"Warranty\",\n", + " \"value\": \"Warranty\"\n", + " }\n", + "]\n" + ] + } + ], + "source": [ + "statuses = connection.submittals.get_types(\n", + " company_id=COMPANY[\"id\"],\n", + " project_id=PROJECT[\"id\"],\n", + ")\n", + "\n", + "print(json.dumps(statuses, indent=4))" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -203,26 +311,226 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Total Submittals: 34\n", - "Submittal 63403248: Cast-in-Place Concrete - Product Data\n", + "Total Submittals: 690\n", + "Submittal 59439747: Evaporation Retardant and Finishing Aid (PD)\n", "{\n", - " \"id\": 63403248,\n", + " \"id\": 59439747,\n", " \"actual_delivery_date\": null,\n", - " \"approvers\": [],\n", + " \"approvers\": [\n", + " {\n", + " \"id\": 147669060,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [\n", + " {\n", + " \"id\": 134115274,\n", + " \"additional_page_count\": 0,\n", + " \"attached_at\": \"2025-02-05T14:09:31Z\",\n", + " \"attachment_id\": 5219862258,\n", + " \"content_type\": \"application/pdf\",\n", + " \"document_markup_layer_id\": 58977669,\n", + " \"filename\": \"03 05 10.0 - Concrete Moisture Evaporation Retardant Aid_Structures Reviewed.pdf\",\n", + " \"markup_updated_at\": null,\n", + " \"state\": \"current\",\n", + " \"updated_at\": \"2025-02-05T14:09:31Z\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB71ZYVQQ8FYPF7EKW47XA1?companyId=8089&projectId=2563870&sig=ec53abd133cbbb48256333c7115191281ac8fab42ed164bf125c7fa374c9c16c\",\n", + " \"version_timestamp\": \"2025-02-05T14:09:31Z\"\n", + " }\n", + " ],\n", + " \"comment\": \"See attached pdf for submittal review comments.\",\n", + " \"days_to_respond\": 14,\n", + " \"due_date\": \"2025-02-24\",\n", + " \"response\": {\n", + " \"id\": 23348895,\n", + " \"considered\": \"approved as noted\",\n", + " \"name\": \"Approved as Noted\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": \"2025-02-05\",\n", + " \"sent_date\": \"2025-02-04\",\n", + " \"user\": {\n", + " \"id\": 10716012,\n", + " \"name\": \"Alma Mcelroy\"\n", + " },\n", + " \"variance\": -13,\n", + " \"workflow_group_number\": 2\n", + " },\n", + " {\n", + " \"id\": 147669058,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [],\n", + " \"comment\": null,\n", + " \"days_to_respond\": 14,\n", + " \"due_date\": \"2025-02-24\",\n", + " \"response\": {\n", + " \"id\": 23348892,\n", + " \"considered\": \"pending\",\n", + " \"name\": \"Pending\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": null,\n", + " \"sent_date\": \"2025-02-04\",\n", + " \"user\": {\n", + " \"id\": 10857518,\n", + " \"name\": \"Abhit Borkar\"\n", + " },\n", + " \"variance\": null,\n", + " \"workflow_group_number\": 2\n", + " },\n", + " {\n", + " \"id\": 147669059,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [],\n", + " \"comment\": null,\n", + " \"days_to_respond\": 14,\n", + " \"due_date\": \"2025-02-24\",\n", + " \"response\": {\n", + " \"id\": 23348892,\n", + " \"considered\": \"pending\",\n", + " \"name\": \"Pending\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": null,\n", + " \"sent_date\": \"2025-02-04\",\n", + " \"user\": {\n", + " \"id\": 10881261,\n", + " \"name\": \"Steve Hafer\"\n", + " },\n", + " \"variance\": null,\n", + " \"workflow_group_number\": 2\n", + " },\n", + " {\n", + " \"id\": 147669061,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [],\n", + " \"comment\": null,\n", + " \"days_to_respond\": 14,\n", + " \"due_date\": \"2025-02-24\",\n", + " \"response\": {\n", + " \"id\": 23348892,\n", + " \"considered\": \"pending\",\n", + " \"name\": \"Pending\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": null,\n", + " \"sent_date\": \"2025-02-04\",\n", + " \"user\": {\n", + " \"id\": 8100632,\n", + " \"name\": \"Rebecca Richter\"\n", + " },\n", + " \"variance\": null,\n", + " \"workflow_group_number\": 2\n", + " },\n", + " {\n", + " \"id\": 147669057,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [\n", + " {\n", + " \"id\": 134046649,\n", + " \"additional_page_count\": 0,\n", + " \"attached_at\": \"2025-02-04T14:47:22Z\",\n", + " \"attachment_id\": 5216926645,\n", + " \"content_type\": \"application/pdf\",\n", + " \"document_markup_layer_id\": 58922726,\n", + " \"filename\": \"03 30 00 1.0 - Evaporation Retardant Aid.pdf\",\n", + " \"markup_updated_at\": null,\n", + " \"state\": \"excluded\",\n", + " \"updated_at\": \"2025-02-04T14:47:22Z\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK8PVSP9R6R7PM6R853ZYCT7?companyId=8089&projectId=2563870&sig=52696f7af84c1dd74edc71b79be57558ddc29313b3dce241623b751ea886099c\",\n", + " \"version_timestamp\": \"2025-02-04T14:47:22Z\"\n", + " }\n", + " ],\n", + " \"comment\": \"\",\n", + " \"days_to_respond\": 7,\n", + " \"due_date\": \"2025-02-12\",\n", + " \"response\": {\n", + " \"id\": 23348887,\n", + " \"considered\": \"approved\",\n", + " \"name\": \"Conforms - Processed for A/E Review \"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": \"2025-02-04\",\n", + " \"sent_date\": null,\n", + " \"user\": {\n", + " \"id\": 9775551,\n", + " \"name\": \"Noah Daily\"\n", + " },\n", + " \"variance\": -6,\n", + " \"workflow_group_number\": 1\n", + " },\n", + " {\n", + " \"id\": 147669056,\n", + " \"approver_type\": \"Approver\",\n", + " \"associated_attachments\": [],\n", + " \"comment\": null,\n", + " \"days_to_respond\": 7,\n", + " \"due_date\": \"2025-02-12\",\n", + " \"response\": {\n", + " \"id\": 23348892,\n", + " \"considered\": \"pending\",\n", + " \"name\": \"Pending\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": null,\n", + " \"sent_date\": null,\n", + " \"user\": {\n", + " \"id\": 9209674,\n", + " \"name\": \"Irving Abarca Silva\"\n", + " },\n", + " \"variance\": null,\n", + " \"workflow_group_number\": 1\n", + " },\n", + " {\n", + " \"id\": 147698586,\n", + " \"approver_type\": \"Submitter\",\n", + " \"associated_attachments\": [\n", + " {\n", + " \"id\": 134011672,\n", + " \"additional_page_count\": 1,\n", + " \"attached_at\": \"2025-02-03T20:58:07Z\",\n", + " \"attachment_id\": 5215424747,\n", + " \"content_type\": \"application/pdf\",\n", + " \"document_markup_layer_id\": 58915543,\n", + " \"filename\": \"03 30 00 1.0 - Evaporation Retardant Aid.pdf\",\n", + " \"markup_updated_at\": \"2025-02-04T14:42:09Z\",\n", + " \"state\": \"excluded\",\n", + " \"updated_at\": \"2025-02-03T20:58:07Z\",\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6SP40SVMGJWFS63SYYCDG7?companyId=8089&projectId=2563870&sig=00daf587306791f17293684193aa262545684f4f57d3cbcdfd5edbbaacec16b9\",\n", + " \"version_timestamp\": \"2025-02-03T20:58:07Z\"\n", + " }\n", + " ],\n", + " \"comment\": \"\",\n", + " \"days_to_respond\": 10,\n", + " \"due_date\": \"2025-02-21\",\n", + " \"response\": {\n", + " \"id\": 23348889,\n", + " \"considered\": \"submitted\",\n", + " \"name\": \"Submitted\"\n", + " },\n", + " \"response_required\": false,\n", + " \"returned_date\": \"2025-02-03\",\n", + " \"sent_date\": \"2025-02-03\",\n", + " \"user\": {\n", + " \"id\": 12258387,\n", + " \"name\": \"Mathew Zettlemoyer\"\n", + " },\n", + " \"variance\": -14,\n", + " \"workflow_group_number\": 0\n", + " }\n", + " ],\n", " \"associated_attachments\": [],\n", " \"ball_in_court\": [],\n", " \"cost_code_id\": null,\n", - " \"created_at\": \"2025-05-20T18:07:07Z\",\n", + " \"created_at\": \"2024-12-04T16:13:43Z\",\n", " \"created_by\": {\n", - " \"id\": 13104091,\n", - " \"name\": \"Christopher Ortiz\"\n", + " \"id\": 9209674,\n", + " \"name\": \"Irving Abarca Silva\"\n", " },\n", " \"current_revision\": true,\n", " \"custom_fields\": {\n", @@ -236,84 +544,216 @@ " },\n", " \"custom_field_261598\": {\n", " \"data_type\": \"boolean\",\n", - " \"value\": null\n", + " \"value\": true\n", " },\n", " \"custom_field_472802\": {\n", " \"data_type\": \"datetime\",\n", " \"value\": null\n", " }\n", " },\n", - " \"description\": \"A. Product Data: For each of the following.\\n1. Portland cement.\\n2. Fly ash.\\n3. Slag cement.\\n4. Blended hydraulic cement.\\n5. Silica fume.\\n6. Performance-based hydraulic cement\\n7. Aggregates.\\n8. Admixtures:\\nFEBRUARY MARCH 21, 2025\\nISSUED FOR PERMIT (CORE & SHELL)\\na. Include limitations of use, including restrictions on cementitious materials,\\nsupplementary cementitious materials, air entrainment, aggregates, temperature at\\ntime of concrete placement, relative humidity at time of concrete placement, curing\\nconditions, and use of other admixtures.\\n9. Color pigments.\\n10. Fiber reinforcement.\\n11. Vapor retarders.\\n12. Floor and slab treatments.\\n13. Liquid floor treatments.\\n14. Curing materials.\\na. Include documentation from color pigment manufacturer, indicating that proposed\\nmethods of curing are recommended by color pigment manufacturer.\\n15. Joint fillers.\\n16. Repair materials.\",\n", - " \"distributed_at\": null,\n", - " \"distribution_members\": [],\n", + " \"description\": \"\",\n", + " \"distributed_at\": \"2025-02-05T14:27:18Z\",\n", + " \"distribution_members\": [\n", + " {\n", + " \"id\": 10857518,\n", + " \"name\": \"Abhit Borkar\"\n", + " },\n", + " {\n", + " \"id\": 12613405,\n", + " \"name\": \"Alec New\"\n", + " },\n", + " {\n", + " \"id\": 10716012,\n", + " \"name\": \"Alma Mcelroy\"\n", + " },\n", + " {\n", + " \"id\": 12350818,\n", + " \"name\": \"Caleb Booth\"\n", + " },\n", + " {\n", + " \"id\": 9209674,\n", + " \"name\": \"Irving Abarca Silva\"\n", + " },\n", + " {\n", + " \"id\": 9775551,\n", + " \"name\": \"Noah Daily\"\n", + " },\n", + " {\n", + " \"id\": 10881261,\n", + " \"name\": \"Steve Hafer\"\n", + " }\n", + " ],\n", " \"drawing_ids\": [],\n", - " \"due_date\": null,\n", - " \"formatted_number\": \"03 30 00-1\",\n", + " \"due_date\": \"2025-02-24\",\n", + " \"formatted_number\": \"030510-1\",\n", " \"issue_date\": null,\n", - " \"last_distributed_submittal\": null,\n", - " \"lead_time\": null,\n", + " \"last_distributed_submittal\": {\n", + " \"id\": 25912445,\n", + " \"distributed_attachments\": [],\n", + " \"distributed_by\": {\n", + " \"id\": 9775551,\n", + " \"initials\": \"ND\",\n", + " \"name\": \"Noah Daily\",\n", + " \"vendor_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " \"distributed_responses\": [\n", + " {\n", + " \"id\": 36264346,\n", + " \"comment\": \"
See attached pdf for submittal review comments.
\",\n", + " \"distributed_attachments\": [\n", + " {\n", + " \"id\": 5219862258,\n", + " \"content_type\": \"application/pdf\",\n", + " \"filename\": \"03 05 10.0 - Concrete Moisture Evaporation Retardant Aid_Structures Reviewed.pdf\",\n", + " \"source_prostore_file_id\": 5219862258,\n", + " \"url\": \"https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB71ZYVQQ8FYPF7EKW47XA1?companyId=8089&projectId=2563870&sig=ec53abd133cbbb48256333c7115191281ac8fab42ed164bf125c7fa374c9c16c\",\n", + " \"viewable_document_id\": 800056795\n", + " }\n", + " ],\n", + " \"response_name\": \"Approved as Noted\",\n", + " \"submittal_approver_id\": 147669060,\n", + " \"submittal_response\": {\n", + " \"id\": 23348895,\n", + " \"considered\": \"approved as noted\",\n", + " \"name\": \"Approved as Noted\"\n", + " },\n", + " \"submittal_response_id\": 23348895,\n", + " \"user\": {\n", + " \"id\": 10716012,\n", + " \"initials\": \"AM\",\n", + " \"name\": \"Alma Mcelroy\",\n", + " \"vendor_name\": \"FGM Architects Inc.\"\n", + " },\n", + " \"user_id\": 10716012\n", + " }\n", + " ],\n", + " \"distributed_to\": [\n", + " {\n", + " \"id\": 9209674,\n", + " \"initials\": \"IA\",\n", + " \"name\": \"Irving Abarca Silva\",\n", + " \"vendor_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " {\n", + " \"id\": 9775551,\n", + " \"initials\": \"ND\",\n", + " \"name\": \"Noah Daily\",\n", + " \"vendor_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " {\n", + " \"id\": 10857518,\n", + " \"initials\": \"AB\",\n", + " \"name\": \"Abhit Borkar\",\n", + " \"vendor_name\": \"Austin ISD\"\n", + " },\n", + " {\n", + " \"id\": 12258387,\n", + " \"initials\": \"MZ\",\n", + " \"name\": \"Mathew Zettlemoyer\",\n", + " \"vendor_name\": \"Lithko TX, LLC\"\n", + " },\n", + " {\n", + " \"id\": 12350818,\n", + " \"initials\": \"CB\",\n", + " \"name\": \"Caleb Booth\",\n", + " \"vendor_name\": \"Rogers-O'Brien Construction Company\"\n", + " },\n", + " {\n", + " \"id\": 12613405,\n", + " \"initials\": \"AN\",\n", + " \"name\": \"Alec New\",\n", + " \"vendor_name\": \"Rogers-O'Brien Construction Company\"\n", + " }\n", + " ],\n", + " \"message\": \"Please see attached submittal.
\",\n", + " \"sent_at\": \"2025-02-05T14:27:18Z\"\n", + " },\n", + " \"lead_time\": 5,\n", " \"linked_drawing_ids\": [],\n", " \"location_id\": null,\n", " \"number\": \"1\",\n", " \"private\": false,\n", " \"received_date\": null,\n", - " \"received_from\": null,\n", - " \"required_on_site_date\": null,\n", - " \"responsible_contractor\": null,\n", + " \"received_from\": {\n", + " \"id\": 12258387,\n", + " \"name\": \"Mathew Zettlemoyer\"\n", + " },\n", + " \"required_on_site_date\": \"2025-03-28\",\n", + " \"responsible_contractor\": {\n", + " \"id\": 30314679,\n", + " \"name\": \"Lithko Contracting, LLC\"\n", + " },\n", " \"revision\": \"0\",\n", + " \"scheduled_task\": null,\n", " \"specification_section\": {\n", - " \"id\": 38306263,\n", - " \"current_revision_id\": 47001236,\n", - " \"description\": \"Cast-in-Place Concrete\",\n", - " \"label\": \"03 30 00 - Cast-in-Place Concrete\",\n", - " \"number\": \"03 30 00\",\n", - " \"specification_area_id\": 790,\n", - " \"specification_area_name\": \"Area 02\",\n", - " \"viewable_document_id\": 838546616\n", + " \"id\": 36037652,\n", + " \"current_revision_id\": 45441059,\n", + " \"description\": \"CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE\",\n", + " \"label\": \"030510 - CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE\",\n", + " \"number\": \"030510\",\n", + " \"specification_area_id\": null,\n", + " \"specification_area_name\": null,\n", + " \"viewable_document_id\": 805330997\n", " },\n", " \"status\": {\n", - " \"id\": 115339,\n", - " \"name\": \"Approved / No Exceptions Taken\",\n", + " \"id\": 4092,\n", + " \"name\": \"Approved as Noted\",\n", " \"status\": \"Closed\"\n", " },\n", " \"sub_job_id\": null,\n", " \"submit_by\": null,\n", " \"submittal_manager\": {\n", - " \"id\": 13104091,\n", - " \"name\": \"Christopher Ortiz\"\n", + " \"id\": 9775551,\n", + " \"name\": \"Noah Daily\"\n", " },\n", " \"submittal_package\": {\n", - " \"id\": 2908371,\n", + " \"id\": 2757260,\n", " \"attachments\": [],\n", " \"attachments_count\": 0,\n", " \"created_by\": {\n", - " \"id\": 13104091,\n", - " \"name\": \"Christopher Ortiz\"\n", + " \"id\": 9209674,\n", + " \"name\": \"Irving Abarca Silva\"\n", " },\n", " \"description\": \"\",\n", - " \"number\": \"1\",\n", + " \"number\": \"003.A\",\n", " \"specification_section_id\": null,\n", " \"submittal_ids\": [\n", - " 63403254,\n", - " 63403248,\n", - " 63403249,\n", - " 63403323,\n", - " 63405023,\n", - " 63403328,\n", - " 63403327\n", + " 65555845,\n", + " 65424252,\n", + " 61414813,\n", + " 61297225,\n", + " 61297132,\n", + " 61208794,\n", + " 60755056,\n", + " 60755022,\n", + " 60754897,\n", + " 60754831,\n", + " 61456809,\n", + " 60981834,\n", + " 60981780,\n", + " 60783062,\n", + " 60732208,\n", + " 60732752,\n", + " 60732440,\n", + " 60731154,\n", + " 60730588,\n", + " 59440668,\n", + " 59440870,\n", + " 59440928,\n", + " 59439747\n", " ],\n", - " \"title\": \"Christopher Ortiz - Closeout Items\",\n", - " \"updated_at\": \"2025-05-28T12:56:18Z\"\n", + " \"title\": \"Lithko Contracting Action Submittals\",\n", + " \"updated_at\": \"2025-02-20T20:34:41Z\"\n", " },\n", " \"submittal_workflow_template\": null,\n", " \"submittal_workflow_template_applied_at\": null,\n", - " \"title\": \"Cast-in-Place Concrete - Product Data\",\n", + " \"title\": \"Evaporation Retardant and Finishing Aid (PD)\",\n", " \"type\": {\n", - " \"id\": 12478,\n", + " \"id\": -1,\n", " \"name\": \"Product Data\",\n", " \"translated_name\": \"Product Data\"\n", " },\n", - " \"updated_at\": \"2025-06-18T14:24:05Z\"\n", + " \"updated_at\": \"2025-02-26T14:08:21Z\"\n", "}\n" ] } @@ -321,20 +761,23 @@ "source": [ "submittals = connection.submittals.get(\n", " company_id=COMPANY[\"id\"],\n", - " project_id=PROJECT[\"id\"],\n", + " project_id=2563870,\n", " per_page=10000\n", ")\n", "\n", "print(f\"Total Submittals: {len(submittals)}\")\n", "print(f\"Submittal {submittals[0]['id']}: {submittals[0]['title']}\")\n", - "print(json.dumps(submittals[0], indent=4))" + "print(json.dumps(submittals[0], indent=4))\n", + "\n", + "with open(\"submittals.json\", \"w\") as f:\n", + " json.dump(submittals, f, indent=2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "Filtering" + "#### Filter by Status" ] }, { @@ -373,6 +816,272 @@ " print(f\"Number of {status['value']} submittals: {len(filtered_submittals)}\")" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Filter by Type" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test 1234 - New Test Project\n", + "213002 - Niagara - Conroe\n", + "211069 - Niagara - Dallas\n", + "232009 - Niagara Temple Storage Facility\n", + "212066 - Niagra Temple FS Conversion\n", + "244002 - North Central Baptist Hybrid Renovation\n", + "194506 - North Rim Corporate Campus\n", + "201101 - Novel Turtle Creek Apartment\n", + "221014 - Oakhouse Apartments\n", + "221005 - Old Denton and Jackson Retail\n", + "192517 - OLD VRBO\n", + "192519 - One West Hills\n", + "245006 - Oppidan Temple\n", + "000000.3 - OpX Test Project\n", + "211006 - PCBC Children's Renovation P2\n", + "221102 - PCBC Columbarium\n", + "201115 - PCBC Pleitz 1st Flr Renovation\n", + "231032 - PCBC Sanctuary\n", + "251007 - PCBC Sanctuary Fire Protection\n", + "251007 - PCBC Sanctuary Fire Protection\n", + "234007 - Perlen House\n", + "182505 - Perry Mansion Hotel\n", + "191613 - Pinkston HS\n", + "162516 - Plaza Saltillo\n", + "PS212.088 - Precon 212088 - Red Bluff Office Bldg\n", + "000000.5 - Precon Test Project\n", + "231020 - Prime DFW01-01\n", + "231066 - Prime DFW01-02\n", + "None - Procore Connect Test Project\n", + "391001 - Procore Test Project 3\n", + "211050 - Project Pike - Niagara Bottling\n", + "None - Punch Test\n", + "221046 - QTS DFW1 - DC5\n", + "241039 - QTS DFW1 DC3\n", + "241008 - QTS DFW1 DC5\n", + "241003 - QTS DFW1 DC6\n", + "251008 - QTS DFW2 DC3\n", + "241021 - QTS Fedora Densification Acceleration\n", + "241002 - QTS FTW DC1 Densification\n", + "221112 - QTS FTW Door Modifications\n", + "221047 - QTS FTW Fit Out\n", + "241015 - QTS FTW1 DC1 EOL UPS Replacement\n", + "231019 - QTS FTW1 ONCOR PREPOSITIONING\n", + "224015 - QTS NRC\n", + "214004 - QTS SAT2 DC1\n", + "234020 - QTS SAT2 DC1 9MW Fitout\n", + "244016 - QTS SAT2 DC1 Phase III\n", + "000000.66 - Quality Department\n", + "233023 - Quest Collegiate Academy - Shenandoah\n", + "234021 - Rackspace Annex\n", + "234004 - Rackspace TI\n", + "191103 - RagingWire Loading Dock & Elevator Enclosure\n", + "252003 - Red Bluff D Permit\n", + "212088 - Red Bluff Triangle\n", + "212788 - Red Bluff Triangle - Precon\n", + "182515 - Red River Apts\n", + "243002 - Rice University - Residential Colleges\n", + "212048 - River Park Block 13\n", + "242034 - River Park Sitework F2\n", + "212083 - River Park South Sitework\n", + "222999 - RO Austin Equipment Yard\n", + "202906 - RO Austin Office\n", + "202906 - RO Austin Office Renovation\n", + "999999 - RO Dallas Office\n", + "203901 - RO Houston Office\n", + "225001 - RO Waco Office\n", + "212024 - Robertson Elementary School\n", + "191208 - Rockwall CT\n", + "192623 - Rosedale School\n", + "None - Safety Tools Training\n", + "211074 - Sahara Equity - 2999 Olympus 2nd Floor TI\n", + "224006 - SAISD - YWLA\n", + "214037 - SAISD 2022 Bond - Preconstruction\n", + "XXXXXX - Sandbox Test Project\n", + "000000.1 - Sandbox Test Project\n", + "212071 - Schunk Xycarb\n", + "243016 - SCS Houston Recycling Center\n", + "224807 - Self Performed - Thomas Jefferson High School\n", + "212005 - Seton Williamson LVL 6 Finish-Out\n", + "242001 - Seven Oaks MRI\n", + "191101 - Shelby Family Offices\n", + "212061 - Skyworks TI\n", + "232006 - Skyworks TI Day 2\n", + "192222 - SMCA 2W Refresh\n", + "192204 - SMCA Stereotaxis\n", + "224005 - Smith Elementary School\n", + "231074 - SMU Alley Improvements\n", + "201118 - SMU Cox School of Business\n", + "231094 - SMU ZTA House Demolition\n", + "182124 - SN Scouring Remediation\n", + "192516 - SOHO Model Rooms\n", + "245001 - Sojo Temple\n", + "000000.7 - SOPs Training Project\n", + "232056 - South Congress Hotel\n", + "214034 - South Laredo Multifamily\n", + "232045 - SpaceX - Mezzanine & Dining\n", + "242026 - SSES Science Building\n", + "224029 - St. Luke's ED Renovation\n", + "232010 - St. Stephens Aquatic Center\n", + "None - Standard Project Template\n", + "None - Standard Project Template - Updated Folders\n", + "232072 - Starbase Parking Garage\n", + "232029 - State Bar of Texas\n", + "232029 - State Bar of Texas\n", + "221031 - Steeplechase Office Building\n", + "243003 - Sterling Ridge Orthopaedics Sports Medicine\n", + "222018 - Switch Data Center Austin Chiller Upgrades\n", + "211021 - T-Mobile - Dallas\n", + "202109 - T-Mobile Austin SR-C Expansion\n", + "182603 - T.A. Brown Elementary\n", + "211073 - Tamko - 2999 Olympus 2nd Floor TI\n", + "224024 - Teijin Automotive Seguin High Bay Exhaust DB\n", + "212069 - Terry Black's Barton Springs Renovation\n", + "212056 - Terry Black's BBQ Lockhart\n", + "222004 - Terry Blacks - Waco\n", + "None - Test\n", + "123456 - Test Project Creation\n", + "232060 - TFC - Camp Hubbard Renewal\n", + "242008 - TFC - Travis State Office Bldg\n", + "181115 - The Branch Church\n", + "211090 - The Farm Parking Garage\n", + "000000.8 - The Fundamentals Test Project\n", + "203104 - The Optimist Restaurant\n", + "234010 - The Pearl Brewery\n", + "211040 - The Tradition - Clearfork\n", + "211007 - The Trails Church\n", + "224007 - Thomas Jefferson High School\n", + "221060 - THR Presbetyrian Hospital Rockwall - 3rd Floor Finish Out\n", + "201205 - THR Presby Rockwall - Renovation\n", + "201203 - THR Presbyterian Hospital Rockwall - Additions\n", + "191208 - THR Rockwall CT\n", + "201202 - THR Rockwall N Pkg Lot\n", + "221015 - TMS Admin Renovation\n", + "223013 - Tomball MOB\n", + "191000 - Tower Test Project\n", + "211047 - Triangle Brick Phase II\n", + "191219 - Trinity Regional Hospital\n", + "232039 - TSTC Waco CCAP\n", + "232739 - TSTC Waco CCAP Precon\n", + "234031 - UH Public Health Building MOB 1&2\n", + "211035 - Unique Loom Tenant Improvements\n", + "231089 - Universal Studios Frisco\n", + "191604 - UNT Dining Halll\n", + "211080 - Upper Room\n", + "221083 - Uptown Dual Brand Hotel\n", + "234027 - USAA - A01-E/W Remodel\n", + "214027 - USAA - AO3-E/W Remodel\n", + "234018 - USAA - GH01E Remodel\n", + "234015 - USAA - GH02W Remodel\n", + "234016 - USAA - Remodel Group B\n", + "204504 - USAA 300 Convent\n", + "244023 - USAA BCD01W Remodel\n", + "244006 - USAA EFO3W Remodel\n", + "244027 - USAA Elevator Modernization\n", + "244005 - USAA GH02E Remodel\n", + "244021 - USAA Starbucks Remodel\n", + "233014 - USPI Woodforest ASC\n", + "244013 - Uvalde Memorial MOB\n", + "000000.65 - VDC Department\n", + "None - VDC Testing Playground\n", + "211071 - Verily - 2999 Olympus 10th Floor TI\n", + "192517 - VRBO TI Domain 11 Ph2\n", + "212053 - Waco High School\n", + "221059 - Waco Riverfront Phase II\n", + "211094 - Wallbox\n", + "WW2023 - Warranty Work 2023-Austin\n", + "WW1023 - Warranty Work 2023-Dallas\n", + "WW3023 - Warranty Work 2023-Houston\n", + "WW4023 - Warranty Work 2023-San Antonio\n", + "WW2024 - Warranty Work 2024-Austin\n", + "WW1024 - Warranty Work 2024-Dallas\n", + "WW3024 - Warranty Work 2024-Houston\n", + "WW4024 - Warranty Work 2024-San Antonio\n", + "WW5024 - Warranty Work 2024-Waco\n", + "WW2025 - Warranty Work 2025-Austin\n", + "WW1025 - Warranty Work 2025-Dallas\n", + "WW3025 - Warranty Work 2025-Houston\n", + "WW4025 - Warranty Work 2025-San Antonio\n", + "WW5025 - Warranty Work 2025-Waco\n", + "241013 - Wellbilt Finishout\n", + "221010 - West Lake Park\n", + "252005 - Westin Domain Expansion\n", + "191114 - Westin Southlake\n", + "194101 - Weston Centre Garage Expansion\n", + "212031 - Whole Foods - TI\n", + "203607 - YES Prep Safety & Security\n", + "211034 - Yum! RED Innovation Labs\n" + ] + } + ], + "source": [ + "types_to_find = [\n", + " \"Product Data & Shop Drawings\",\n", + " \"Product Information\",\n", + " \"Product Manual\",\n", + " \"Submittal\",\n", + " \"Sustainable Design Submittal\",\n", + " \"Test Report\",\n", + " \"Certification\",\n", + " \"Closeout\",\n", + " \"Default for SBMTL\",\n", + " \"Document\",\n", + " \"Manufacturer's Specs\",\n", + " \"Mix Design\",\n", + " \"Mock-up\",\n", + " \"O&M Manual\",\n", + " \"O&M Training\",\n", + " \"Other\",\n", + " \"Plans\",\n", + " \"Prints\"\n", + "]\n", + "\n", + "results = []\n", + "\n", + "#projects = connection.projects.get(company_id=COMPANY[\"id\"])\n", + "try:\n", + " for project in projects[300:]: # 149: 252013 - ECX Austin DFW33220N PH1\n", + " project_number = project[\"project_number\"]\n", + " project_name = project[\"name\"]\n", + " print(f\"{project_number} - {project_name}\")\n", + " for type_to_find in types_to_find:\n", + " submittals_by_type = connection.submittals.get(\n", + " company_id=COMPANY[\"id\"],\n", + " project_id=PROJECT[\"id\"],\n", + " types=type_to_find\n", + " )\n", + " if len(submittals_by_type) > 0:\n", + " print(f\"\\t{type_to_find}: {len(submittals_by_type)}\")\n", + " for submittal in submittals_by_type:\n", + " results.append({\n", + " \"project_number\": project_number,\n", + " \"project_name\": project_name,\n", + " \"submittal_number\": submittal[\"number\"],\n", + " \"submittal_name\": submittal[\"title\"],\n", + " \"submittal_link\": f\"https://app.procore.com/webclients/host/companies/8089/projects/{project['id']}/tools/submittals/{submittal['id']}\"\n", + " })\n", + " #print(f\"Added {len(results)} submittals of type {type_to_find} for {project_number}: {project_name}\")\n", + "except Exception as e:\n", + " print(f\"Error: {e}\")\n", + "\n", + "if len(results) > 0:\n", + " with open('submittals_by_type.csv', 'w', newline='') as csvfile:\n", + " fieldnames = ['project_number', 'project_name', 'submittal_number', 'submittal_name', 'submittal_link']\n", + " writer = csv.DictWriter(csvfile, fieldnames=fieldnames)\n", + "\n", + " writer.writeheader()\n", + " for result in results:\n", + " writer.writerow(result)" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/snippets/submittals.json b/snippets/submittals.json new file mode 100644 index 0000000..a40a27e --- /dev/null +++ b/snippets/submittals.json @@ -0,0 +1,216213 @@ +[ + { + "id": 59439747, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147669060, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134115274, + "additional_page_count": 0, + "attached_at": "2025-02-05T14:09:31Z", + "attachment_id": 5219862258, + "content_type": "application/pdf", + "document_markup_layer_id": 58977669, + "filename": "03 05 10.0 - Concrete Moisture Evaporation Retardant Aid_Structures Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-05T14:09:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB71ZYVQQ8FYPF7EKW47XA1?companyId=8089&projectId=2563870&sig=ec53abd133cbbb48256333c7115191281ac8fab42ed164bf125c7fa374c9c16c", + "version_timestamp": "2025-02-05T14:09:31Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-02-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -13, + "workflow_group_number": 2 + }, + { + "id": 147669058, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669059, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669061, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669057, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134046649, + "additional_page_count": 0, + "attached_at": "2025-02-04T14:47:22Z", + "attachment_id": 5216926645, + "content_type": "application/pdf", + "document_markup_layer_id": 58922726, + "filename": "03 30 00 1.0 - Evaporation Retardant Aid.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-04T14:47:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK8PVSP9R6R7PM6R853ZYCT7?companyId=8089&projectId=2563870&sig=52696f7af84c1dd74edc71b79be57558ddc29313b3dce241623b751ea886099c", + "version_timestamp": "2025-02-04T14:47:22Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147669056, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147698586, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134011672, + "additional_page_count": 1, + "attached_at": "2025-02-03T20:58:07Z", + "attachment_id": 5215424747, + "content_type": "application/pdf", + "document_markup_layer_id": 58915543, + "filename": "03 30 00 1.0 - Evaporation Retardant Aid.pdf", + "markup_updated_at": "2025-02-04T14:42:09Z", + "state": "excluded", + "updated_at": "2025-02-03T20:58:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6SP40SVMGJWFS63SYYCDG7?companyId=8089&projectId=2563870&sig=00daf587306791f17293684193aa262545684f4f57d3cbcdfd5edbbaacec16b9", + "version_timestamp": "2025-02-03T20:58:07Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-03", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:13:43Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-05T14:27:18Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-24", + "formatted_number": "030510-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 25912445, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36264346, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5219862258, + "content_type": "application/pdf", + "filename": "03 05 10.0 - Concrete Moisture Evaporation Retardant Aid_Structures Reviewed.pdf", + "source_prostore_file_id": 5219862258, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB71ZYVQQ8FYPF7EKW47XA1?companyId=8089&projectId=2563870&sig=ec53abd133cbbb48256333c7115191281ac8fab42ed164bf125c7fa374c9c16c", + "viewable_document_id": 800056795 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147669060, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please see attached submittal.
", + "sent_at": "2025-02-05T14:27:18Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-03-28", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037652, + "current_revision_id": 45441059, + "description": "CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE", + "label": "030510 - CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE", + "number": "030510", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805330997 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Evaporation Retardant and Finishing Aid (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:08:21Z" + }, + { + "id": 59440593, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:31:13Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "030510-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037652, + "current_revision_id": 45441059, + "description": "CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE", + "label": "030510 - CONCRETE MOISTURE VAPOR REDUCTION ADMIXTURE", + "number": "030510", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805330997 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-11", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757295, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.B", + "specification_section_id": null, + "submittal_ids": [ + 59441134, + 59440593, + 59441019 + ], + "title": "Lithko Contracting Closeout", + "updated_at": "2025-02-20T20:36:43Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Warranty & Sample : Concrete Moisture Vapor ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-02-27T12:30:14Z" + }, + { + "id": 59440668, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147669075, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135549501, + "additional_page_count": 0, + "attached_at": "2025-03-04T22:56:29Z", + "attachment_id": 5278542684, + "content_type": "application/pdf", + "document_markup_layer_id": 60303011, + "filename": "03 30 00-1.0 - Cast in place concrete_Formwork Pond B1 and B2 Walls_SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-04T22:56:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNHNYGY62ZB99Y1YQN4DVFZQ?companyId=8089&projectId=2563870&sig=b4f34496f50af231731f654a0c1b1f34bf5a3f948cce7190ddff1a2603c5e727", + "version_timestamp": "2025-03-04T22:56:29Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": "2025-02-26", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 147669074, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669072, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135219390, + "additional_page_count": 1, + "attached_at": "2025-02-26T17:32:24Z", + "attachment_id": 5265038932, + "content_type": "application/pdf", + "document_markup_layer_id": 59920096, + "filename": "03 30 00 1.0 - Formwork_Pond B1 and B2 Walls (SD).pdf", + "markup_updated_at": "2025-02-26T17:34:30Z", + "state": "excluded", + "updated_at": "2025-02-26T17:34:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1N1PKX5QSE3AFCYPGE8CF4?companyId=8089&projectId=2563870&sig=db3578e44a4724f191e4f6d34d8633d656693e84205f9d226a16845e6b678897", + "version_timestamp": "2025-02-26T17:34:30Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-03-07", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": "2025-02-26", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147669071, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149766188, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135219266, + "additional_page_count": 1, + "attached_at": "2025-02-26T17:32:24Z", + "attachment_id": 5265038932, + "content_type": "application/pdf", + "document_markup_layer_id": 59920096, + "filename": "03 30 00 1.0 - Formwork_Pond B1 and B2 Walls (SD).pdf", + "markup_updated_at": "2025-02-26T17:34:30Z", + "state": "outdated", + "updated_at": "2025-02-26T17:32:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1N1PKX5QSE3AFCYPGE8CF4?companyId=8089&projectId=2563870&sig=db3578e44a4724f191e4f6d34d8633d656693e84205f9d226a16845e6b678897", + "version_timestamp": "2025-02-26T17:32:24Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": 3, + "workflow_group_number": 0 + }, + { + "id": 147698649, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:33:24Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-06T19:25:43Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-12", + "formatted_number": "033000-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26305470, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36847441, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5278542684, + "content_type": "application/pdf", + "filename": "03 30 00-1.0 - Cast in place concrete_Formwork Pond B1 and B2 Walls_SD_STR.pdf", + "source_prostore_file_id": 5278542684, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNHNYGY62ZB99Y1YQN4DVFZQ?companyId=8089&projectId=2563870&sig=b4f34496f50af231731f654a0c1b1f34bf5a3f948cce7190ddff1a2603c5e727", + "viewable_document_id": 810571997 + } + ], + "response_name": "For Record Only", + "submittal_approver_id": 147669075, + "submittal_response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "submittal_response_id": 23348894, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please submittal for record review.
", + "sent_at": "2025-03-06T19:25:43Z" + }, + "lead_time": 3, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "required_on_site_date": "2025-03-17", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Formwork: Pond B1 and B2 Walls (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T19:25:43Z" + }, + { + "id": 59440870, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147669090, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134191971, + "additional_page_count": 0, + "attached_at": "2025-02-06T15:22:49Z", + "attachment_id": 5223008187, + "content_type": "application/pdf", + "document_markup_layer_id": 59043538, + "filename": "03 30 00-3.0 - Cast in place concrete_Formwork_PD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-06T15:22:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDXNVRTZ1S31PCKMCGN7X9T?companyId=8089&projectId=2563870&sig=0b36091c0716730bbbc873f6fd6dbd03f0e708e1cf75fd968044099804358fc4", + "version_timestamp": "2025-02-06T15:22:49Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 147669091, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669089, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669087, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134061789, + "additional_page_count": 0, + "attached_at": "2025-02-04T17:06:42Z", + "attachment_id": 5217568612, + "content_type": "application/pdf", + "document_markup_layer_id": 59003148, + "filename": "03 30 00 3.0 -Dow Highload 40 Foam and Release compound.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-04T17:06:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK8YTWDEBEQ2S38AN7CJJZ72?companyId=8089&projectId=2563870&sig=6a2a73a4919d4ece4d9b1a62ac2333a1472ab1d3f150cd7060697950916594ab", + "version_timestamp": "2025-02-04T17:06:42Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147669086, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147699382, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134017890, + "additional_page_count": 1, + "attached_at": "2025-02-03T21:54:31Z", + "attachment_id": 5215642705, + "content_type": "application/pdf", + "document_markup_layer_id": 58916841, + "filename": "03 30 00 3.0 -Dow Highload 40 Foam and Release compound.pdf", + "markup_updated_at": "2025-02-04T14:47:54Z", + "state": "excluded", + "updated_at": "2025-02-03T21:54:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6WX20T64RGNRWJZCAWVJP4?companyId=8089&projectId=2563870&sig=bf9f35ea7ab554978d6ec68dbe31d8db0477c36350d40308293a7f0d7fe67515", + "version_timestamp": "2025-02-03T21:54:31Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-03", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:38:12Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-10T13:25:24Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "033000-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 25962005, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36337903, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5223008187, + "content_type": "application/pdf", + "filename": "03 30 00-3.0 - Cast in place concrete_Formwork_PD_STR_fgma.pdf", + "source_prostore_file_id": 5223008187, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDXNVRTZ1S31PCKMCGN7X9T?companyId=8089&projectId=2563870&sig=0b36091c0716730bbbc873f6fd6dbd03f0e708e1cf75fd968044099804358fc4", + "viewable_document_id": 800612906 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147669090, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11541229, + "initials": "BP", + "name": "Bobby Perry", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "Please see submittal marked approved as noted.
", + "sent_at": "2025-02-10T13:25:24Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-05-11", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Formwork : Cast In Place Concrete (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T19:56:52Z" + }, + { + "id": 59440928, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150298938, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135733913, + "additional_page_count": 0, + "attached_at": "2025-03-07T17:33:50Z", + "attachment_id": 5285887503, + "content_type": "application/pdf", + "document_markup_layer_id": 60531841, + "filename": "03 30 00-4.0 Control Joint and Construction Joint Layout - Shop Drawings_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-07T17:33:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRTMMKRZP5J9CQ5BSZPFQ2S?companyId=8089&projectId=2563870&sig=044686883826fcb6f37300c4f8dbc44acca75b605e7d1e7cd13224c15faa6f72", + "version_timestamp": "2025-03-07T17:33:50Z" + } + ], + "comment": "See response for comments.", + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 147669104, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669103, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147669101, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135537194, + "additional_page_count": 1, + "attached_at": "2025-02-25T13:35:16Z", + "attachment_id": 5261041405, + "content_type": "application/pdf", + "document_markup_layer_id": 60186922, + "filename": "03 30 00 4.0 - Control Joint and Construction Joint Layout (SD).pdf", + "markup_updated_at": "2025-03-04T20:57:56Z", + "state": "excluded", + "updated_at": "2025-03-04T20:57:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYN30SNDNYW6NE67ZEMAR3G?companyId=8089&projectId=2563870&sig=56fc6ab8feea7c183138090e662d0b82a1ddbbf18635ba115273c3fabdeb0483", + "version_timestamp": "2025-03-04T20:57:56Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": "2025-02-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 147669100, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149178578, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135120535, + "additional_page_count": 1, + "attached_at": "2025-02-25T13:35:16Z", + "attachment_id": 5261041405, + "content_type": "application/pdf", + "document_markup_layer_id": 60186922, + "filename": "03 30 00 4.0 - Control Joint and Construction Joint Layout (SD).pdf", + "markup_updated_at": "2025-03-04T20:57:56Z", + "state": "outdated", + "updated_at": "2025-02-25T13:35:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYN30SNDNYW6NE67ZEMAR3G?companyId=8089&projectId=2563870&sig=56fc6ab8feea7c183138090e662d0b82a1ddbbf18635ba115273c3fabdeb0483", + "version_timestamp": "2025-02-25T13:35:16Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": 2, + "workflow_group_number": 0 + }, + { + "id": 149178577, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 147699465, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:39:48Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-12T13:53:45Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-18", + "formatted_number": "033000-4", + "issue_date": null, + "last_distributed_submittal": { + "id": 26375049, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36953264, + "comment": "See response for comments.
", + "distributed_attachments": [ + { + "id": 5285887503, + "content_type": "application/pdf", + "filename": "03 30 00-4.0 Control Joint and Construction Joint Layout - Shop Drawings_STR_FGMA.pdf", + "source_prostore_file_id": 5285887503, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRTMMKRZP5J9CQ5BSZPFQ2S?companyId=8089&projectId=2563870&sig=044686883826fcb6f37300c4f8dbc44acca75b605e7d1e7cd13224c15faa6f72", + "viewable_document_id": 811943525 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150298938, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please proceed as specified by engineer comments.
", + "sent_at": "2025-03-12T13:53:45Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Control Joint and Construction Joint Layout (PD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-12T13:53:45Z" + }, + { + "id": 59441019, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:41:53Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "033000-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-11", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757295, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.B", + "specification_section_id": null, + "submittal_ids": [ + 59441134, + 59440593, + 59441019 + ], + "title": "Lithko Contracting Closeout", + "updated_at": "2025-02-20T20:36:43Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Leed/AEGB : Cast In Place Concrete (D)", + "type": { + "id": -1, + "name": "LEED Data", + "translated_name": "LEED Data" + }, + "updated_at": "2025-02-27T12:30:15Z" + }, + { + "id": 59441134, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T16:44:44Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "033000-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-11", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757295, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.B", + "specification_section_id": null, + "submittal_ids": [ + 59441134, + 59440593, + 59441019 + ], + "title": "Lithko Contracting Closeout", + "updated_at": "2025-02-20T20:36:43Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Warranty : Cast In Place Concrete ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-02-27T12:30:16Z" + }, + { + "id": 59442941, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157003912, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140035391, + "additional_page_count": 0, + "attached_at": "2025-05-29T14:24:01Z", + "attachment_id": 5457365352, + "content_type": "application/pdf", + "document_markup_layer_id": 63897921, + "filename": "04 20 00-1.0 - Unit Masonry-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-29T14:24:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWE6T09R3SSAQH81BXR6ZQ2E?companyId=8089&projectId=2563870&sig=dbd1b893b28174482601a77708aa0c3565fb617b1299a7a73778007b2bd94202", + "version_timestamp": "2025-05-29T14:24:01Z" + } + ], + "comment": "See attached responses from Architect and Engineer.", + "days_to_respond": 5, + "due_date": "2025-05-28", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-29", + "sent_date": "2025-05-21", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 157003910, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139681919, + "additional_page_count": 1, + "attached_at": "2025-05-21T18:21:57Z", + "attachment_id": 5442273151, + "content_type": "application/pdf", + "document_markup_layer_id": 63578508, + "filename": "042000 - Unit Masonry.pdf", + "markup_updated_at": "2025-05-21T19:10:38Z", + "state": "excluded", + "updated_at": "2025-05-21T19:10:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVT10AK3WB0KAPFQQ9YB7WXK?companyId=8089&projectId=2563870&sig=2d43576c8acb34697ceec4c01bbf4f3384cdce4244dad0950c330888d8f796ce", + "version_timestamp": "2025-05-21T19:10:38Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-28", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-21", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157003911, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157003909, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139676048, + "additional_page_count": 1, + "attached_at": "2025-05-21T18:21:57Z", + "attachment_id": 5442273151, + "content_type": "application/pdf", + "document_markup_layer_id": 63578508, + "filename": "042000 - Unit Masonry.pdf", + "markup_updated_at": "2025-05-21T19:10:38Z", + "state": "outdated", + "updated_at": "2025-05-21T18:21:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVT10AK3WB0KAPFQQ9YB7WXK?companyId=8089&projectId=2563870&sig=2d43576c8acb34697ceec4c01bbf4f3384cdce4244dad0950c330888d8f796ce", + "version_timestamp": "2025-05-21T18:21:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-28", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-21", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:14:43Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-29T19:01:41Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-05-28", + "formatted_number": "042000-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27423797, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38507294, + "comment": "See attached responses from Architect and Engineer.
", + "distributed_attachments": [ + { + "id": 5457365352, + "content_type": "application/pdf", + "filename": "04 20 00-1.0 - Unit Masonry-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5457365352, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWE6T09R3SSAQH81BXR6ZQ2E?companyId=8089&projectId=2563870&sig=dbd1b893b28174482601a77708aa0c3565fb617b1299a7a73778007b2bd94202", + "viewable_document_id": 841774034 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157003912, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-29T19:01:41Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Unit Masonry (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-29T19:01:41Z" + }, + { + "id": 59442990, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159026698, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142191463, + "additional_page_count": 0, + "attached_at": "2025-07-11T02:04:45Z", + "attachment_id": 5549870845, + "content_type": "application/pdf", + "document_markup_layer_id": 65655212, + "filename": "04 43 13.13-2.0 - Cats Stone Unit Masonry-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T02:04:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVKKSQ7TKJXEXXQWV29XJAD?companyId=8089&projectId=2563870&sig=673f72322b2755b88f2d0fb912d202235a17bc83a70628c4303049c27f033630", + "version_timestamp": "2025-07-11T02:04:44Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 10, + "workflow_group_number": 3 + }, + { + "id": 159026696, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141170471, + "additional_page_count": 0, + "attached_at": "2025-06-19T21:00:25Z", + "attachment_id": 5504845975, + "content_type": "application/pdf", + "document_markup_layer_id": 64824057, + "filename": "Cast Stone Unit Shop Drawings - Trinity Masonry - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-19T21:00:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4ZW2Y4BX6FZ6DSH06QPB0M?companyId=8089&projectId=2563870&sig=f26b1f98aa4684e12ff58cd516943c60757ebf983aba5d72dc6f22c775a24a39", + "version_timestamp": "2025-06-19T21:00:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-16", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159026697, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159026694, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140901029, + "additional_page_count": 1, + "attached_at": "2025-06-16T13:43:51Z", + "attachment_id": 5493776666, + "content_type": "application/pdf", + "document_markup_layer_id": 64583415, + "filename": "Cast Stone Unit Shop Drawings - Trinity Masonry.pdf", + "markup_updated_at": "2025-06-16T13:47:01Z", + "state": "excluded", + "updated_at": "2025-06-16T13:47:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWFPJ895QDE6ENT97MGBWGW?companyId=8089&projectId=2563870&sig=bbe942cb8f008534c0d5a40209735fe40e0cb53d4f79da4f93cd324c0f97e527", + "version_timestamp": "2025-06-16T13:47:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159026695, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159026689, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140900709, + "additional_page_count": 1, + "attached_at": "2025-06-16T13:43:51Z", + "attachment_id": 5493776666, + "content_type": "application/pdf", + "document_markup_layer_id": 64583415, + "filename": "Cast Stone Unit Shop Drawings - Trinity Masonry.pdf", + "markup_updated_at": "2025-06-16T13:47:01Z", + "state": "outdated", + "updated_at": "2025-06-16T13:43:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWFPJ895QDE6ENT97MGBWGW?companyId=8089&projectId=2563870&sig=bbe942cb8f008534c0d5a40209735fe40e0cb53d4f79da4f93cd324c0f97e527", + "version_timestamp": "2025-06-16T13:43:51Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:16:24Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-11T12:32:11Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "044313.13-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27977158, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39327521, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5549870845, + "content_type": "application/pdf", + "filename": "04 43 13.13-2.0 - Cats Stone Unit Masonry-SD_FGMA.pdf", + "source_prostore_file_id": 5549870845, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVKKSQ7TKJXEXXQWV29XJAD?companyId=8089&projectId=2563870&sig=673f72322b2755b88f2d0fb912d202235a17bc83a70628c4303049c27f033630", + "viewable_document_id": 857756056 + } + ], + "response_name": "Approved", + "submittal_approver_id": 159026698, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T12:32:11Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": "2025-05-19", + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096744, + "current_revision_id": 45441063, + "description": "ANCHORED STONE MASONRY VENEER", + "label": "044313.13 - ANCHORED STONE MASONRY VENEER", + "number": "044313.13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331023 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cast Stone Unit Masonry (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-11T12:32:11Z" + }, + { + "id": 59443031, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:17:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "042000-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Grout and Mortar sample", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-06-24T16:57:44Z" + }, + { + "id": 59443057, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:18:31Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "042000-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Samples for Verification : Unit Masonry (S)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-02-26T20:11:25Z" + }, + { + "id": 59443141, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:20:36Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "042000-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-03-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sample Panel Mock Up : Unit Masonry ", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-02-26T20:12:12Z" + }, + { + "id": 59443343, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T17:22:13Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "042000-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-03-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall Mock Up : Unit Masonry ", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-02-26T20:12:48Z" + }, + { + "id": 59448226, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160835065, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142213270, + "additional_page_count": 0, + "attached_at": "2025-07-11T15:03:52Z", + "attachment_id": 5550894539, + "content_type": "application/pdf", + "document_markup_layer_id": 65686310, + "filename": "04 20 00-2.0 - Rebar for Unit Masonry-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T15:03:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX06KZX2JPCQP10T543Y9VE?companyId=8089&projectId=2563870&sig=2ea433e1eb455cf14a01f855f5c4f7dae6329dc4580cd11f56eefb7915d00cad", + "version_timestamp": "2025-07-11T15:03:52Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 160835063, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142074115, + "additional_page_count": 0, + "attached_at": "2025-07-09T15:17:27Z", + "attachment_id": 5545065772, + "content_type": "application/pdf", + "document_markup_layer_id": 65555562, + "filename": "Rebar Shop Drawings - Trinity Masonry - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-09T15:17:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQW692AJYWQ78QPW70PXSBX?companyId=8089&projectId=2563870&sig=d4b3846ff80f197cef3b1006c7b3f73b828ad917027363735223ef2a810068f5", + "version_timestamp": "2025-07-09T15:17:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-08", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 160835064, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160835061, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141998847, + "additional_page_count": 1, + "attached_at": "2025-07-08T14:46:05Z", + "attachment_id": 5541659819, + "content_type": "application/pdf", + "document_markup_layer_id": 65490309, + "filename": "Rebar Shop Drawings - Trinity Masonry.pdf", + "markup_updated_at": "2025-07-08T15:10:41Z", + "state": "excluded", + "updated_at": "2025-07-08T15:10:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZN7YFC2JN8ADXC2H3RP3S18?companyId=8089&projectId=2563870&sig=291f56cf7bf1bfbf0e3dd2bba38884440df0d16da2d7921ef01c2952ddfd52f4", + "version_timestamp": "2025-07-08T15:10:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": "2025-07-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160835062, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160835060, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141996036, + "additional_page_count": 1, + "attached_at": "2025-07-08T14:46:05Z", + "attachment_id": 5541659819, + "content_type": "application/pdf", + "document_markup_layer_id": 65490309, + "filename": "Rebar Shop Drawings - Trinity Masonry.pdf", + "markup_updated_at": "2025-07-08T15:10:41Z", + "state": "outdated", + "updated_at": "2025-07-08T14:46:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZN7YFC2JN8ADXC2H3RP3S18?companyId=8089&projectId=2563870&sig=291f56cf7bf1bfbf0e3dd2bba38884440df0d16da2d7921ef01c2952ddfd52f4", + "version_timestamp": "2025-07-08T14:46:05Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T18:43:18Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-11T18:55:31Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-07-16", + "formatted_number": "042000-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27986227, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39340026, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5550894539, + "content_type": "application/pdf", + "filename": "04 20 00-2.0 - Rebar for Unit Masonry-SD_STR.pdf", + "source_prostore_file_id": 5550894539, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX06KZX2JPCQP10T543Y9VE?companyId=8089&projectId=2563870&sig=2ea433e1eb455cf14a01f855f5c4f7dae6329dc4580cd11f56eefb7915d00cad", + "viewable_document_id": 857946784 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160835065, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T18:55:31Z" + }, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": "2026-02-02", + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-01-11", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rebar for Unit Masonry (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-11T18:55:31Z" + }, + { + "id": 59448471, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159025433, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141860707, + "additional_page_count": 0, + "attached_at": "2025-07-03T18:18:12Z", + "attachment_id": 5535169960, + "content_type": "application/pdf", + "document_markup_layer_id": 65487603, + "filename": "04 43 13-1.0 - Stone Masonry Veneer_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-03T18:18:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8R4TDE4A92V7H21FXFH28S?companyId=8089&projectId=2563870&sig=e0d61f6578554a2f13fc5f7a144077e23ec6096cdb3c1c551e07cc57cb8ca51a", + "version_timestamp": "2025-07-03T18:18:12Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-03", + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 5, + "workflow_group_number": 3 + }, + { + "id": 159025431, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141170359, + "additional_page_count": 0, + "attached_at": "2025-06-19T20:58:59Z", + "attachment_id": 5504840737, + "content_type": "application/pdf", + "document_markup_layer_id": 64823396, + "filename": "04 43 13 - 1.0 - Stone Masonry Veneer - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-19T20:58:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4ZS2NYZ6MN2ZVHKK63RQ4A?companyId=8089&projectId=2563870&sig=9eb16b93118527dcbd536b7511835865927fbb03fcaf0a367a392d7083f68c7d", + "version_timestamp": "2025-06-19T20:58:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-16", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159025432, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159025429, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140900383, + "additional_page_count": 1, + "attached_at": "2025-06-16T13:39:03Z", + "attachment_id": 5493747260, + "content_type": "application/pdf", + "document_markup_layer_id": 64582857, + "filename": "04 43 13 - 1.0 - Stone Masonry Venner.pdf", + "markup_updated_at": "2025-06-16T13:40:46Z", + "state": "excluded", + "updated_at": "2025-06-16T13:40:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWFA9PSEAFX4MK7K9TN5R9F?companyId=8089&projectId=2563870&sig=b83a101dc32aa44cb432f3d4fe8e8c51d0c6fa51b2e2753b07a3f26149d51478", + "version_timestamp": "2025-06-16T13:40:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": "2025-06-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159025430, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159025428, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140900188, + "additional_page_count": 1, + "attached_at": "2025-06-16T13:39:03Z", + "attachment_id": 5493747260, + "content_type": "application/pdf", + "document_markup_layer_id": 64582857, + "filename": "04 43 13 - 1.0 - Stone Masonry Venner.pdf", + "markup_updated_at": "2025-06-16T13:40:46Z", + "state": "outdated", + "updated_at": "2025-06-16T13:39:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWFA9PSEAFX4MK7K9TN5R9F?companyId=8089&projectId=2563870&sig=b83a101dc32aa44cb432f3d4fe8e8c51d0c6fa51b2e2753b07a3f26149d51478", + "version_timestamp": "2025-06-16T13:39:03Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T18:49:47Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-03T19:16:09Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "044313-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27890333, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39198610, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5535169960, + "content_type": "application/pdf", + "filename": "04 43 13-1.0 - Stone Masonry Veneer_FGMA.pdf", + "source_prostore_file_id": 5535169960, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8R4TDE4A92V7H21FXFH28S?companyId=8089&projectId=2563870&sig=e0d61f6578554a2f13fc5f7a144077e23ec6096cdb3c1c551e07cc57cb8ca51a", + "viewable_document_id": 855365980 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 159025433, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-03T19:16:09Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": "2025-07-16", + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037656, + "current_revision_id": 44213002, + "description": "Stone Masonry Veneer", + "label": "044313 - Stone Masonry Veneer", + "number": "044313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 780010315 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Stone Masonry Veneer ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-03T19:16:09Z" + }, + { + "id": 59448558, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T18:51:29Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "044313-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037656, + "current_revision_id": 44213002, + "description": "Stone Masonry Veneer", + "label": "044313 - Stone Masonry Veneer", + "number": "044313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 780010315 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Samples : Anchored Stone Masonry Veneer ", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-02-26T20:16:00Z" + }, + { + "id": 59448609, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T18:52:45Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "044313.13-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096744, + "current_revision_id": 45441063, + "description": "ANCHORED STONE MASONRY VENEER", + "label": "044313.13 - ANCHORED STONE MASONRY VENEER", + "number": "044313.13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331023 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-11", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757534, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.B", + "specification_section_id": null, + "submittal_ids": [ + 59448609 + ], + "title": "Division 004 Closeout", + "updated_at": "2024-12-04T18:52:47Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Warranty: Anchored Stone Masonry Veneer ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-02-27T12:30:17Z" + }, + { + "id": 59448930, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147134914, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134254620, + "additional_page_count": 0, + "attached_at": "2025-02-07T14:10:23Z", + "attachment_id": 5225616372, + "content_type": "application/pdf", + "document_markup_layer_id": 59094333, + "filename": "05 12 00 -2.0 Area A South Steel Framing_Structures Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-07T14:10:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGBXKQ5J2WAC4VD3YGBP776?companyId=8089&projectId=2563870&sig=3fc1e8b97bf78637e799047e27aa6b115bd719793d18775cd700d050f9bcdd96", + "version_timestamp": "2025-02-07T14:10:23Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": "2025-01-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 147134913, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-28", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147134915, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-28", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147134910, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 133725564, + "additional_page_count": 1, + "attached_at": "2025-01-27T20:48:44Z", + "attachment_id": 5200736900, + "content_type": "application/pdf", + "document_markup_layer_id": 58643273, + "filename": "05 12 00 - 2.0 - A South Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-01-28T21:05:05Z", + "state": "excluded", + "updated_at": "2025-01-28T21:05:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJMRBKWBCXCNPR6Q0GECQPVF?companyId=8089&projectId=2563870&sig=72ffa53f03973f661e05f27ecf1ffe1896e3be31851fa24581387465099ccee6", + "version_timestamp": "2025-01-28T21:05:05Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-01-28", + "sent_date": "2025-01-27", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -13, + "workflow_group_number": 1 + }, + { + "id": 147134911, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-27", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147134909, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 133650921, + "additional_page_count": 1, + "attached_at": "2025-01-27T20:48:44Z", + "attachment_id": 5200736900, + "content_type": "application/pdf", + "document_markup_layer_id": 58643273, + "filename": "05 12 00 - 2.0 - A South Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-01-28T21:05:05Z", + "state": "outdated", + "updated_at": "2025-01-27T20:48:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJMRBKWBCXCNPR6Q0GECQPVF?companyId=8089&projectId=2563870&sig=72ffa53f03973f661e05f27ecf1ffe1896e3be31851fa24581387465099ccee6", + "version_timestamp": "2025-01-27T20:48:44Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-14", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-01-27", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-04T18:59:59Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-18T16:24:17Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "051200-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26074671, + "distributed_attachments": [], + "distributed_by": { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36505928, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5225616372, + "content_type": "application/pdf", + "filename": "05 12 00 -2.0 Area A South Steel Framing_Structures Review.pdf", + "source_prostore_file_id": 5225616372, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGBXKQ5J2WAC4VD3YGBP776?companyId=8089&projectId=2563870&sig=3fc1e8b97bf78637e799047e27aa6b115bd719793d18775cd700d050f9bcdd96", + "viewable_document_id": 801052788 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 147134914, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-02-18T16:24:17Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": 31261485, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-05-13", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A South Structural Steel Framing (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-04T13:42:29Z" + }, + { + "id": 59472551, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150136368, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136220503, + "additional_page_count": 0, + "attached_at": "2025-03-17T21:21:03Z", + "attachment_id": 5305396738, + "content_type": "application/pdf", + "document_markup_layer_id": 60759611, + "filename": "05 12 00-9.0 Structural Steel Framing - Steel Primer PD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-17T21:21:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPJZNGQG0PXV1PF3Y8THMZ1D?companyId=8089&projectId=2563870&sig=296f79be2adcc1e19a160c507e55f785f52b3376e9a7595e5e18330043627ac3", + "version_timestamp": "2025-03-17T21:21:03Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-17", + "sent_date": "2025-03-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 150217502, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150136367, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150136366, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135994692, + "additional_page_count": 1, + "attached_at": "2025-03-12T19:37:03Z", + "attachment_id": 5295943851, + "content_type": "application/pdf", + "document_markup_layer_id": 60568396, + "filename": "05 12 00 9.0 - Steel Primer (PD).pdf", + "markup_updated_at": "2025-03-12T20:29:06Z", + "state": "excluded", + "updated_at": "2025-03-12T20:29:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5XR7A1SPD7M59MFX7RVTX0?companyId=8089&projectId=2563870&sig=02a844128ba2d48351b845ba309a9ef1fae7241a295882fa2556ed941bfcd365", + "version_timestamp": "2025-03-12T20:29:06Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-03-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150136365, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150136364, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135989194, + "additional_page_count": 1, + "attached_at": "2025-03-12T19:37:03Z", + "attachment_id": 5295943851, + "content_type": "application/pdf", + "document_markup_layer_id": 60568396, + "filename": "05 12 00 9.0 - Steel Primer (PD).pdf", + "markup_updated_at": "2025-03-12T20:29:06Z", + "state": "outdated", + "updated_at": "2025-03-12T19:37:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5XR7A1SPD7M59MFX7RVTX0?companyId=8089&projectId=2563870&sig=02a844128ba2d48351b845ba309a9ef1fae7241a295882fa2556ed941bfcd365", + "version_timestamp": "2025-03-12T19:37:03Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -3, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T16:50:01Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-17T22:06:53Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "051200-9", + "issue_date": null, + "last_distributed_submittal": { + "id": 26442963, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37051646, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5305396738, + "content_type": "application/pdf", + "filename": "05 12 00-9.0 Structural Steel Framing - Steel Primer PD_STR_fgma.pdf", + "source_prostore_file_id": 5305396738, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPJZNGQG0PXV1PF3Y8THMZ1D?companyId=8089&projectId=2563870&sig=296f79be2adcc1e19a160c507e55f785f52b3376e9a7595e5e18330043627ac3", + "viewable_document_id": 815463147 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150136368, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-17T22:06:53Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-05-02", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Steel Primer (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-17T22:06:53Z" + }, + { + "id": 59472596, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148292203, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135792745, + "additional_page_count": 0, + "attached_at": "2025-03-10T13:39:54Z", + "attachment_id": 5288425617, + "content_type": "application/pdf", + "document_markup_layer_id": 60401214, + "filename": "05 21 00-2.0 Steel Joist Framing and Decking_SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-10T13:39:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP04G2K8E1YPGGERJ53JS0C9?companyId=8089&projectId=2563870&sig=4e75a4b396ebcc5903c8246adc0961126fadfc625478764463e188735e7c83e3", + "version_timestamp": "2025-03-10T13:39:54Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-10", + "sent_date": "2025-03-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 148292202, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148292201, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135461810, + "additional_page_count": 1, + "attached_at": "2025-03-03T19:36:00Z", + "attachment_id": 5274829070, + "content_type": "application/pdf", + "document_markup_layer_id": 60120171, + "filename": "05 21 00 2.0 - Steel Joist Framing and Decking (SD).pdf", + "markup_updated_at": "2025-03-03T20:59:48Z", + "state": "excluded", + "updated_at": "2025-03-03T20:59:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNER3Q5NRMGK2AYA8VXMT29B?companyId=8089&projectId=2563870&sig=14845c0c405423737760621e21e4e38502e58a85a4f2f7358871e98222a68b4c", + "version_timestamp": "2025-03-03T20:59:48Z" + } + ], + "comment": "Please review for approval as soon as possible.", + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-02-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148292200, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148292199, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135450204, + "additional_page_count": 1, + "attached_at": "2025-03-03T19:36:00Z", + "attachment_id": 5274829070, + "content_type": "application/pdf", + "document_markup_layer_id": 60120171, + "filename": "05 21 00 2.0 - Steel Joist Framing and Decking (SD).pdf", + "markup_updated_at": "2025-03-03T20:59:48Z", + "state": "outdated", + "updated_at": "2025-03-03T19:36:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNER3Q5NRMGK2AYA8VXMT29B?companyId=8089&projectId=2563870&sig=14845c0c405423737760621e21e4e38502e58a85a4f2f7358871e98222a68b4c", + "version_timestamp": "2025-03-03T19:36:00Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-03-03", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 3, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T16:50:58Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-10T14:41:16Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-03-17", + "formatted_number": "052100-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26335583, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36894351, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5288425617, + "content_type": "application/pdf", + "filename": "05 21 00-2.0 Steel Joist Framing and Decking_SD_STR_fgma.pdf", + "source_prostore_file_id": 5288425617, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP04G2K8E1YPGGERJ53JS0C9?companyId=8089&projectId=2563870&sig=4e75a4b396ebcc5903c8246adc0961126fadfc625478764463e188735e7c83e3", + "viewable_document_id": 812433688 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148292203, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + } + ], + "message": "Pease read through comments for joist portions of the submittal
", + "sent_at": "2025-03-10T14:41:16Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-02", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037658, + "current_revision_id": 45441065, + "description": "STEEL JOIST FRAMING", + "label": "052100 - STEEL JOIST FRAMING", + "number": "052100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331033 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Steel Joist Framing and Decking (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:03Z" + }, + { + "id": 59472832, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T16:53:04Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "051200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-03", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758458, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.B", + "specification_section_id": null, + "submittal_ids": [ + 59472832 + ], + "title": "Thornton Inc. Closeout", + "updated_at": "2025-02-25T14:16:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Closeout : Structural Steel Framing ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-05T12:30:03Z" + }, + { + "id": 59473151, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157106209, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140425741, + "additional_page_count": 0, + "attached_at": "2025-06-05T17:20:36Z", + "attachment_id": 5473418350, + "content_type": "application/pdf", + "document_markup_layer_id": 64209002, + "filename": "09 22 16-2.0 - Non-structural Metal Framing-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-05T17:20:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0HQ6RYW3N0PVH4NVPQT2TW?companyId=8089&projectId=2563870&sig=1a186b95514f78dc095507b352ca04c4d30a81f377d9cb3e1daab4c518735c9e", + "version_timestamp": "2025-06-05T17:20:36Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-05", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-05", + "sent_date": "2025-05-22", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 157106208, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139745508, + "additional_page_count": 0, + "attached_at": "2025-05-22T17:50:48Z", + "attachment_id": 5445128524, + "content_type": "application/pdf", + "document_markup_layer_id": 63632706, + "filename": "09 22 16 2.0 - Non-structural Metal Framing (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-22T17:50:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWHVVDY465JBEZTQW0M5Z98?companyId=8089&projectId=2563870&sig=59ac2ad28843c1b0de354493b68c22c53d76a58210bf47feee8229be562d794c", + "version_timestamp": "2025-05-22T17:50:48Z" + } + ], + "comment": "Please provide priority review and approval.", + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": "2025-05-22", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157106207, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157106206, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139739443, + "additional_page_count": 0, + "attached_at": "2025-05-22T16:45:32Z", + "attachment_id": 5444884584, + "content_type": "application/pdf", + "document_markup_layer_id": 63632326, + "filename": "092116 - Non Structural metal Framing.pdf", + "markup_updated_at": "2025-05-22T17:46:47Z", + "state": "excluded", + "updated_at": "2025-05-22T16:45:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWE52CKYXH3A0DEBG3P8BKN?companyId=8089&projectId=2563870&sig=28921aadbacbf7e43d148979ed3107d19ab3ca0d381430463c70b3fdeca5c99b", + "version_timestamp": "2025-05-22T16:45:32Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-20", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -12, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T16:58:48Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-05T20:00:29Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-05", + "formatted_number": "092216-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27521080, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38653000, + "comment": null, + "distributed_attachments": [ + { + "id": 5473418350, + "content_type": "application/pdf", + "filename": "09 22 16-2.0 - Non-structural Metal Framing-PD_FGMA.pdf", + "source_prostore_file_id": 5473418350, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0HQ6RYW3N0PVH4NVPQT2TW?companyId=8089&projectId=2563870&sig=1a186b95514f78dc095507b352ca04c4d30a81f377d9cb3e1daab4c518735c9e", + "viewable_document_id": 844583040 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 157106209, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-05T20:00:29Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-06-02", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037717, + "current_revision_id": 45441115, + "description": "NON-STRUCTURAL METAL FRAMING", + "label": "092216 - NON-STRUCTURAL METAL FRAMING", + "number": "092216", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331266 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Non-structural Metal Framing(PD) ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-24T13:24:17Z" + }, + { + "id": 59473216, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158629402, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140716576, + "additional_page_count": 0, + "attached_at": "2025-06-11T17:13:59Z", + "attachment_id": 5485664117, + "content_type": "application/pdf", + "document_markup_layer_id": 64525552, + "filename": "05 40 00.01-2.0 - Shop Drawing-Cold Formed Metal Framing-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-11T17:13:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFZQ583D4VB4JYNX62GZCSV?companyId=8089&projectId=2563870&sig=97ed6dd03b52486f92095c0a522c242becf35e4cf778b5ce0bc155bb54e86f16", + "version_timestamp": "2025-06-11T17:13:59Z" + } + ], + "comment": "See attached response from Engineer.\r\n\u00a0", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 158629400, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140715365, + "additional_page_count": 0, + "attached_at": "2025-06-11T17:00:41Z", + "attachment_id": 5485613207, + "content_type": "application/pdf", + "document_markup_layer_id": 64434301, + "filename": "054000.01 - 2.0 - Cold formed Metal Framing (SD) - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-11T17:00:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFYYNAN2H6T0V803D5VDBHK?companyId=8089&projectId=2563870&sig=85f3dbbbd36740eef92d5a179cfaaa68e2152496c373d798931a3c8b241647fd", + "version_timestamp": "2025-06-11T17:00:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-10", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 158630522, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158629401, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-10", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158629398, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140661263, + "additional_page_count": 1, + "attached_at": "2025-06-10T20:12:55Z", + "attachment_id": 5483388457, + "content_type": "application/pdf", + "document_markup_layer_id": 64389585, + "filename": "054000.01 - 2.0 - Cold Formed Metal Framing Calculations (C).pdf", + "markup_updated_at": "2025-06-10T20:17:26Z", + "state": "excluded", + "updated_at": "2025-06-10T20:17:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXDQJD0EDNQX8NM07QT5QTDX?companyId=8089&projectId=2563870&sig=9bac868dd12897c0325dafb991a9a66e0471d42e6780d0b1144b647bf4d88d0c", + "version_timestamp": "2025-06-10T20:17:26Z" + }, + { + "id": 140661212, + "additional_page_count": 1, + "attached_at": "2025-06-10T20:12:55Z", + "attachment_id": 5483388443, + "content_type": "application/pdf", + "document_markup_layer_id": 64389556, + "filename": "054000.01 - 2.0 - Cold formed Metal Framing (SD).pdf", + "markup_updated_at": "2025-06-10T20:16:33Z", + "state": "excluded", + "updated_at": "2025-06-10T20:16:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXDQJD3VCXFSXX10611E545P?companyId=8089&projectId=2563870&sig=507a2dbf2ec42df7298a71e75d4011556377f9410290ba4c45e1fcafd0f7d1cd", + "version_timestamp": "2025-06-10T20:16:33Z" + } + ], + "comment": "Please forward onto structure engineer as well", + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158629399, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158629397, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140660833, + "additional_page_count": 1, + "attached_at": "2025-06-10T20:12:55Z", + "attachment_id": 5483388457, + "content_type": "application/pdf", + "document_markup_layer_id": 64389585, + "filename": "054000.01 - 2.0 - Cold Formed Metal Framing Calculations (C).pdf", + "markup_updated_at": "2025-06-10T20:17:26Z", + "state": "outdated", + "updated_at": "2025-06-10T20:12:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXDQJD0EDNQX8NM07QT5QTDX?companyId=8089&projectId=2563870&sig=9bac868dd12897c0325dafb991a9a66e0471d42e6780d0b1144b647bf4d88d0c", + "version_timestamp": "2025-06-10T20:12:55Z" + }, + { + "id": 140660832, + "additional_page_count": 1, + "attached_at": "2025-06-10T20:12:55Z", + "attachment_id": 5483388443, + "content_type": "application/pdf", + "document_markup_layer_id": 64389556, + "filename": "054000.01 - 2.0 - Cold formed Metal Framing (SD).pdf", + "markup_updated_at": "2025-06-10T20:16:33Z", + "state": "outdated", + "updated_at": "2025-06-10T20:12:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXDQJD3VCXFSXX10611E545P?companyId=8089&projectId=2563870&sig=507a2dbf2ec42df7298a71e75d4011556377f9410290ba4c45e1fcafd0f7d1cd", + "version_timestamp": "2025-06-10T20:12:55Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T17:00:09Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-13T18:35:51Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-18", + "formatted_number": "054000.01-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27627216, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38809601, + "comment": "See attached response from Engineer.
\r\n\u00a0
", + "distributed_attachments": [ + { + "id": 5485664117, + "content_type": "application/pdf", + "filename": "05 40 00.01-2.0 - Shop Drawing-Cold Formed Metal Framing-SD_STR.pdf", + "source_prostore_file_id": 5485664117, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFZQ583D4VB4JYNX62GZCSV?companyId=8089&projectId=2563870&sig=97ed6dd03b52486f92095c0a522c242becf35e4cf778b5ce0bc155bb54e86f16", + "viewable_document_id": 846652116 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158629402, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-13T18:35:51Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-05-13", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096745, + "current_revision_id": 45441067, + "description": "Cold-Formed Metal Framing", + "label": "054000.01 - Cold-Formed Metal Framing", + "number": "054000.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331046 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Shop Drawing : Cold Formed Metal Framing (SD) ", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-20T18:00:52Z" + }, + { + "id": 59473290, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150217847, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138342659, + "additional_page_count": 0, + "attached_at": "2025-04-25T21:28:53Z", + "attachment_id": 5389506633, + "content_type": "application/pdf", + "document_markup_layer_id": 62547394, + "filename": "05 50 00-1.0 - Metal Fabrications-Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-25T21:28:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQDE6CZ7D21X90PWP01M5FR?companyId=8089&projectId=2563870&sig=8f98e78c417fd796a4cf9f9107ec6684c3c75ea7969263e393d45c2bf58bf189", + "version_timestamp": "2025-04-25T21:28:53Z" + } + ], + "comment": "See attached response from Architect and Engineer.", + "days_to_respond": 10, + "due_date": "2025-04-16", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": "2025-04-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 7, + "workflow_group_number": 2 + }, + { + "id": 148297969, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148297968, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-02", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148297967, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137077700, + "additional_page_count": 0, + "attached_at": "2025-04-02T14:57:52Z", + "attachment_id": 5339558062, + "content_type": "application/pdf", + "document_markup_layer_id": 61483980, + "filename": "05 50 00 1.0 - Metal Fabrications_Roof, Pit and Ship Ladders (SD)_RO.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-02T14:57:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQVG3YNFHEVPTCE6JKTFJ7KR?companyId=8089&projectId=2563870&sig=ea5597b0f6464cb24b8cef4096a22fb7eea060b32a9e1ef1e9b276d86c5a6649", + "version_timestamp": "2025-04-02T14:57:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-09", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-02", + "sent_date": "2025-02-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148297966, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148297964, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134330548, + "additional_page_count": 1, + "attached_at": "2025-02-10T14:41:41Z", + "attachment_id": 5229004067, + "content_type": "application/pdf", + "document_markup_layer_id": 61482884, + "filename": "05 50 00 1.0 - Metal Fabrications_Roof, Pit and Ship Ladders (SD).pdf", + "markup_updated_at": "2025-04-02T14:54:52Z", + "state": "excluded", + "updated_at": "2025-02-10T14:41:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKR4XMD1BPHWHS1QVANB0YCZ?companyId=8089&projectId=2563870&sig=882b6b49ec3527e687bd10fb83a686839b8f42cfe0d7e48de9aa7f4933a87a31", + "version_timestamp": "2025-02-10T14:41:41Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-02", + "sent_date": "2025-02-07", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 25, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T17:01:43Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-28T16:36:32Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-04-16", + "formatted_number": "055000-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27001599, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37876957, + "comment": "See attached response from Architect and Engineer.
", + "distributed_attachments": [ + { + "id": 5389506633, + "content_type": "application/pdf", + "filename": "05 50 00-1.0 - Metal Fabrications-Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "source_prostore_file_id": 5389506633, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQDE6CZ7D21X90PWP01M5FR?companyId=8089&projectId=2563870&sig=8f98e78c417fd796a4cf9f9107ec6684c3c75ea7969263e393d45c2bf58bf189", + "viewable_document_id": 829955082 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 150217847, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron,
\nPlease revise and resubmit as noted and submit design calculations.
", + "sent_at": "2025-04-28T16:36:32Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-10", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037661, + "current_revision_id": 45441068, + "description": "METAL FABRICATIONS", + "label": "055000 - METAL FABRICATIONS", + "number": "055000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331054 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Fabrications: Roof, Pit and Ship Ladders (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:03Z" + }, + { + "id": 59473355, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160737977, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141941102, + "additional_page_count": 0, + "attached_at": "2025-07-07T17:43:39Z", + "attachment_id": 5538864963, + "content_type": "application/pdf", + "document_markup_layer_id": 65444471, + "filename": "05 50 00-2.0 - Metal Fabrications-Dumpster Gate-SD_FGMA_rev.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-07T17:43:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZJZR9BKA75KEC47SCB4SHWD?companyId=8089&projectId=2563870&sig=f8a7cc1251fc7a59daf55d56332220038ecc4a137c3e68b93c8925e3530fe9bc", + "version_timestamp": "2025-07-07T17:43:39Z" + } + ], + "comment": "Uploaded on behalf of FGMA.", + "days_to_respond": 5, + "due_date": "2025-07-14", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-07", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 150217923, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140201795, + "additional_page_count": 0, + "attached_at": "2025-06-02T17:47:35Z", + "attachment_id": 5464380103, + "content_type": "application/pdf", + "document_markup_layer_id": 64050403, + "filename": "05 50 00-2.0 - Metal Fabrications-Dumpster Gate-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-02T17:47:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWRW2CG8R8HE7CMJXY7ZFGTA?companyId=8089&projectId=2563870&sig=16fe67b79c235ba0282fdff53081e0e2fa7ae30bc3352ac7a04c8572ab740f25", + "version_timestamp": "2025-06-02T17:47:35Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-03", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-02", + "sent_date": "2025-05-20", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 148292602, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139623696, + "additional_page_count": 0, + "attached_at": "2025-05-20T21:58:15Z", + "attachment_id": 5440111029, + "content_type": "application/pdf", + "document_markup_layer_id": 63552262, + "filename": "05 50 00 2.0 - Metal Fabrications_Dumpster Gate (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-20T21:58:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVQV8094R94ZJ7ASGR5F5SC5?companyId=8089&projectId=2563870&sig=a54444e6f7c4543dd089f40d862051097dc4334ebf39b27028a411dded2f7441", + "version_timestamp": "2025-05-20T21:58:15Z" + } + ], + "comment": "Please review and approve.", + "days_to_respond": 5, + "due_date": "2025-05-27", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-20", + "sent_date": "2025-02-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148292601, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148292600, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139622504, + "additional_page_count": 0, + "attached_at": "2025-05-20T21:41:47Z", + "attachment_id": 5440070939, + "content_type": "application/pdf", + "document_markup_layer_id": 63530445, + "filename": "05 50 00 2.0 - Metal Fabrications_Dumpster Gate.pdf", + "markup_updated_at": "2025-05-20T21:56:33Z", + "state": "excluded", + "updated_at": "2025-05-20T21:41:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVQTA26AMPDKEHFFZFT92P6M?companyId=8089&projectId=2563870&sig=c7139659bd4d8798ee14c6c6d964158ef828ee9a6cd18fbd41f61777bc6235f1", + "version_timestamp": "2025-05-20T21:41:47Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-20", + "sent_date": "2025-02-07", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": 59, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T17:02:57Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-03T13:44:07Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-14", + "formatted_number": "055000-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27471580, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38579391, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5464380103, + "content_type": "application/pdf", + "filename": "05 50 00-2.0 - Metal Fabrications-Dumpster Gate-SD_FGMA.pdf", + "source_prostore_file_id": 5464380103, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWRW2CG8R8HE7CMJXY7ZFGTA?companyId=8089&projectId=2563870&sig=16fe67b79c235ba0282fdff53081e0e2fa7ae30bc3352ac7a04c8572ab740f25", + "viewable_document_id": 843008653 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150217923, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-03T13:44:07Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-07-17", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037661, + "current_revision_id": 45441068, + "description": "METAL FABRICATIONS", + "label": "055000 - METAL FABRICATIONS", + "number": "055000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331054 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Fabrications: Dumpster Gate (SD) ", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-07T17:43:50Z" + }, + { + "id": 59473643, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152045907, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137004326, + "additional_page_count": 0, + "attached_at": "2025-04-01T15:23:41Z", + "attachment_id": 5336608630, + "content_type": "application/pdf", + "document_markup_layer_id": 61425876, + "filename": "05 51 13-2.0 - Metal Pan Stairs-SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-01T15:23:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQRZ6EW1F6WAXHCPEM4YWTX3?companyId=8089&projectId=2563870&sig=ed6b15963e20d181594f8c791fb81beff19cfd1df4909e614ab8b669f0070ce5", + "version_timestamp": "2025-04-01T15:23:41Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-01", + "sent_date": "2025-03-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 152045906, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152312757, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152045905, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136787103, + "additional_page_count": 0, + "attached_at": "2025-03-27T15:16:11Z", + "attachment_id": 5327797884, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "05 51 13 2.0 - Metal Pan Stairs (SD)_RO.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-27T15:16:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC2SBAYK9HFDA6ZT6G9NNNT?companyId=8089&projectId=2563870&sig=d895603dbe9058003e465d0d1be1ebd66ea1f21bb415de0cdd36a1040f93f8d5", + "version_timestamp": "2025-03-27T15:16:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 152045904, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152045903, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136621756, + "additional_page_count": 1, + "attached_at": "2025-03-25T13:13:37Z", + "attachment_id": 5321404662, + "content_type": "application/pdf", + "document_markup_layer_id": 61115414, + "filename": "05 51 13 2.0 - Metal Pan Stairs (SD).pdf", + "markup_updated_at": "2025-03-25T16:01:27Z", + "state": "excluded", + "updated_at": "2025-03-25T13:13:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6PZGZXW11YZKZD87S9GC74?companyId=8089&projectId=2563870&sig=d22a6f855dd2396d72eaad96916a26aecfb8c3dedc2083f9c21604a5e498881b", + "version_timestamp": "2025-03-25T13:13:37Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T17:09:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-01T16:14:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-10", + "formatted_number": "055113-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26644099, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37346675, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5336608630, + "content_type": "application/pdf", + "filename": "05 51 13-2.0 - Metal Pan Stairs-SD_STR_fgma.pdf", + "source_prostore_file_id": 5336608630, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQRZ6EW1F6WAXHCPEM4YWTX3?companyId=8089&projectId=2563870&sig=ed6b15963e20d181594f8c791fb81beff19cfd1df4909e614ab8b669f0070ce5", + "viewable_document_id": 820952767 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152045907, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron,
\nPlease make noted corrections and resubmit for approval.
", + "sent_at": "2025-04-01T16:14:33Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-18", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Pan Stairs (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:02Z" + }, + { + "id": 59478803, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157217051, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141743779, + "additional_page_count": 0, + "attached_at": "2025-07-01T23:13:16Z", + "attachment_id": 5530111021, + "content_type": "application/pdf", + "document_markup_layer_id": 65294376, + "filename": "05 51 13-3.0 - Metal Pan Stairs Interior Stair - Calculations_email exchange.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-01T23:13:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ447GQ0G8W9KDHD9ACNPDR6?companyId=8089&projectId=2563870&sig=0dae5be9c91e1e6448f72d7e4d22fbffd56067cb4fbbe5e30495cdaced028995", + "version_timestamp": "2025-07-01T23:13:16Z" + }, + { + "id": 141743780, + "additional_page_count": 0, + "attached_at": "2025-07-01T23:13:16Z", + "attachment_id": 5530111027, + "content_type": "application/pdf", + "document_markup_layer_id": 65294355, + "filename": "05 51 13-3.0 - Metal Pan Stairs Interior Stair - Calculations_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-01T23:13:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ447GNDXCBQSXKVTH4XRKR7?companyId=8089&projectId=2563870&sig=12d0c22db6d7aa807d2bda9043dae8a2fbe59d29a3d96895ab3a530e41b19d67", + "version_timestamp": "2025-07-01T23:13:16Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-03", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-01", + "sent_date": "2025-05-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157217049, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141140746, + "additional_page_count": 1, + "attached_at": "2025-06-19T15:44:37Z", + "attachment_id": 5503678811, + "content_type": "application/pdf", + "document_markup_layer_id": 64784436, + "filename": "055113-3.0 - Metal Pan Stair Calculations.pdf", + "markup_updated_at": "2025-06-19T15:46:57Z", + "state": "excluded", + "updated_at": "2025-06-19T15:46:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4DSSFHPDQQ7TE6HM8FE3WN?companyId=8089&projectId=2563870&sig=b8c85073db7ea5025b32b98f0eda53f88500f98e9113bf4437caa74ee2a8c502", + "version_timestamp": "2025-06-19T15:46:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-05-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157217050, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "Please review and approve.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-05-27", + "sent_date": "2025-05-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -22, + "workflow_group_number": 1 + }, + { + "id": 157217048, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141140517, + "additional_page_count": 1, + "attached_at": "2025-06-19T15:44:37Z", + "attachment_id": 5503678811, + "content_type": "application/pdf", + "document_markup_layer_id": 64784436, + "filename": "055113-3.0 - Metal Pan Stair Calculations.pdf", + "markup_updated_at": "2025-06-19T15:46:57Z", + "state": "outdated", + "updated_at": "2025-06-19T15:44:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4DSSFHPDQQ7TE6HM8FE3WN?companyId=8089&projectId=2563870&sig=b8c85073db7ea5025b32b98f0eda53f88500f98e9113bf4437caa74ee2a8c502", + "version_timestamp": "2025-06-19T15:44:37Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-05-27", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -7, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:03:28Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-08T20:53:20Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 13539728, + "name": "Derek Bryant" + } + ], + "drawing_ids": [], + "due_date": "2025-07-03", + "formatted_number": "055113-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 27935779, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39265912, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5530111027, + "content_type": "application/pdf", + "filename": "05 51 13-3.0 - Metal Pan Stairs Interior Stair - Calculations_STR.pdf", + "source_prostore_file_id": 5530111027, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ447GNDXCBQSXKVTH4XRKR7?companyId=8089&projectId=2563870&sig=12d0c22db6d7aa807d2bda9043dae8a2fbe59d29a3d96895ab3a530e41b19d67", + "viewable_document_id": 854515043 + }, + { + "id": 5530111021, + "content_type": "application/pdf", + "filename": "05 51 13-3.0 - Metal Pan Stairs Interior Stair - Calculations_email exchange.pdf", + "source_prostore_file_id": 5530111021, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ447GQ0G8W9KDHD9ACNPDR6?companyId=8089&projectId=2563870&sig=0dae5be9c91e1e6448f72d7e4d22fbffd56067cb4fbbe5e30495cdaced028995", + "viewable_document_id": 854514849 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 157217051, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please revise and resubmit. Coordination meeting scheduled for 10:30am 7/9/10.
", + "sent_at": "2025-07-08T20:53:20Z" + }, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-07-18", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Pan Stairs Interior Stair - Calculations", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-07-08T20:53:31Z" + }, + { + "id": 59480188, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152047090, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 152047094, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152047093, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152047091, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152047092, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:19:27Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-04-29", + "formatted_number": "055213-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2026-03-09", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037664, + "current_revision_id": 45441070, + "description": "PIPE AND TUBE RAILINGS", + "label": "055213 - PIPE AND TUBE RAILINGS", + "number": "055213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331072 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pipe And tube Railings", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-25T17:29:14Z" + }, + { + "id": 59480264, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148295772, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136791683, + "additional_page_count": 0, + "attached_at": "2025-03-27T15:53:39Z", + "attachment_id": 5327965265, + "content_type": "application/pdf", + "document_markup_layer_id": 61243336, + "filename": "05 52 13-2.0 - Pipe and Tube Railings - SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-27T15:53:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC4XKSWSFW676CZQQWV81SB?companyId=8089&projectId=2563870&sig=0f961f33f23087f1889ac923963a424bd54d5e870f7a34b4cf44d0d90c6d05ba", + "version_timestamp": "2025-03-27T15:53:39Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 152126407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148295771, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148295770, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136666834, + "additional_page_count": 0, + "attached_at": "2025-03-25T20:05:46Z", + "attachment_id": 5323095272, + "content_type": "application/pdf", + "document_markup_layer_id": 61141688, + "filename": "05 52 13 2.0 - Pipe and Tube Railings (SD)_RO.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T20:05:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7EJ53V2DNFG58J91K5D3AQ?companyId=8089&projectId=2563870&sig=795baf103c085e62f73dbd6cd04951d9fc885ae8e4dc501e1af12871e4a2cd49", + "version_timestamp": "2025-03-25T20:05:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-02-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148295769, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148295768, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134328873, + "additional_page_count": 1, + "attached_at": "2025-02-10T14:24:22Z", + "attachment_id": 5228948328, + "content_type": "application/pdf", + "document_markup_layer_id": 61115956, + "filename": "05 52 13 2.0 - Pipe and Tube Railings (SD).pdf", + "markup_updated_at": "2025-03-25T17:29:45Z", + "state": "excluded", + "updated_at": "2025-02-10T14:24:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKR3Y3JTBEPBVSKC6DREV6YY?companyId=8089&projectId=2563870&sig=e8ecf703c2ffbceefbc11a1bf83646fc617b2b50be1609e09857d43abb8c8a5c", + "version_timestamp": "2025-02-10T14:24:22Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:20:35Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-27T16:04:44Z", + "distribution_members": [], + "drawing_ids": [], + "due_date": "2025-04-08", + "formatted_number": "055213-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26587802, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37265491, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5327965265, + "content_type": "application/pdf", + "filename": "05 52 13-2.0 - Pipe and Tube Railings - SD_STR_fgma.pdf", + "source_prostore_file_id": 5327965265, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC4XKSWSFW676CZQQWV81SB?companyId=8089&projectId=2563870&sig=0f961f33f23087f1889ac923963a424bd54d5e870f7a34b4cf44d0d90c6d05ba", + "viewable_document_id": 819472184 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 148295772, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron,
\nPlease make revisions and resubmit.
", + "sent_at": "2025-03-27T16:04:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-03-09", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037664, + "current_revision_id": 45441070, + "description": "PIPE AND TUBE RAILINGS", + "label": "055213 - PIPE AND TUBE RAILINGS", + "number": "055213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331072 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pipe And tube Railings (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:02Z" + }, + { + "id": 59480543, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:26:55Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "061000-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037667, + "current_revision_id": 45441072, + "description": "ROUGH CARPENTRY", + "label": "061000 - ROUGH CARPENTRY", + "number": "061000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331087 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rough Carpentry (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:40:57Z" + }, + { + "id": 59480608, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157148955, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140429695, + "additional_page_count": 0, + "attached_at": "2025-06-05T18:00:42Z", + "attachment_id": 5473579244, + "content_type": "application/pdf", + "document_markup_layer_id": 64199714, + "filename": "06 16 00-1.0 - Sheathing-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-05T18:00:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0M0HK8DNVZKEY9FTFBMQN7?companyId=8089&projectId=2563870&sig=ba47a3cfa25215313e9060be0ca3deb69158c23d23df8f26adfe5955a20bd4be", + "version_timestamp": "2025-06-05T18:00:42Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-06-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-05", + "sent_date": "2025-05-22", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 157148954, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139765426, + "additional_page_count": 0, + "attached_at": "2025-05-22T20:59:03Z", + "attachment_id": 5445895236, + "content_type": "application/pdf", + "document_markup_layer_id": 63647580, + "filename": "06 16 00 1.0 - Sheathing (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-22T20:59:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWWNC6JE4R2DG75DQ2VHM07?companyId=8089&projectId=2563870&sig=a17a97ce33f1c6dc2e6726e4ffed6ce9d914a6aea78e8b189c44addfdf8f289e", + "version_timestamp": "2025-05-22T20:59:03Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": "2025-05-22", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157148953, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157148952, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139765258, + "additional_page_count": 0, + "attached_at": "2025-05-22T20:57:04Z", + "attachment_id": 5445889059, + "content_type": "application/pdf", + "document_markup_layer_id": 63647476, + "filename": "061600 - sheathing.pdf", + "markup_updated_at": "2025-05-22T20:57:50Z", + "state": "excluded", + "updated_at": "2025-05-22T20:57:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWWHS5SJDY5YMFVRBPSJG6G?companyId=8089&projectId=2563870&sig=2b80e2571e6b8c0e830d9f98bbe042716aee705bcd6bee0e7a6626d11e27d8f9", + "version_timestamp": "2025-05-22T20:57:04Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:28:16Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-05T20:01:38Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-05", + "formatted_number": "061600-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27521104, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38653034, + "comment": null, + "distributed_attachments": [ + { + "id": 5473579244, + "content_type": "application/pdf", + "filename": "06 16 00-1.0 - Sheathing-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5473579244, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0M0HK8DNVZKEY9FTFBMQN7?companyId=8089&projectId=2563870&sig=ba47a3cfa25215313e9060be0ca3deb69158c23d23df8f26adfe5955a20bd4be", + "viewable_document_id": 844610273 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157148955, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-05T20:01:38Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-05-19", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037668, + "current_revision_id": 44088226, + "description": "SHEATHING", + "label": "061600 - SHEATHING", + "number": "061600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023173 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheathing (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-30T16:48:51Z" + }, + { + "id": 59480633, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:28:57Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "061600-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037668, + "current_revision_id": 44088226, + "description": "SHEATHING", + "label": "061600 - SHEATHING", + "number": "061600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023173 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-19", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Barrier and Water Resistant Sheathing (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-05T12:30:05Z" + }, + { + "id": 59480748, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:30:50Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "062023-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038913, + "current_revision_id": 45441074, + "description": "INTERIOR FINISH CARPENTRY", + "label": "062023 - INTERIOR FINISH CARPENTRY", + "number": "062023", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331097 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Trim (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T12:30:05Z" + }, + { + "id": 59480824, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:31:53Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "062023-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038913, + "current_revision_id": 45441074, + "description": "INTERIOR FINISH CARPENTRY", + "label": "062023 - INTERIOR FINISH CARPENTRY", + "number": "062023", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331097 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sample : Interior Finish Carpentry ", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-05T12:30:06Z" + }, + { + "id": 59481210, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:38:46Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064116-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037669, + "current_revision_id": 44089108, + "description": "Plastic-Laminate-Clad Architectural Cabinets", + "label": "064116 - Plastic-Laminate-Clad Architectural Cabinets", + "number": "064116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035667 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic-Laminate-Faced Architectural Cabinets (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-04T14:03:08Z" + }, + { + "id": 59481350, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-05T19:41:32Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064116-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037669, + "current_revision_id": 44089108, + "description": "Plastic-Laminate-Clad Architectural Cabinets", + "label": "064116 - Plastic-Laminate-Clad Architectural Cabinets", + "number": "064116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035667 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Shop Drawing : Plastic-Laminate-Faced Architectural Cabinets ", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-05T12:30:06Z" + }, + { + "id": 59501158, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-06T15:46:40Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064116-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037669, + "current_revision_id": 44089108, + "description": "Plastic-Laminate-Clad Architectural Cabinets", + "label": "064116 - Plastic-Laminate-Clad Architectural Cabinets", + "number": "064116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035667 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sample : Plastic-Laminate-Clad Architectural Cabinets ", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-05T12:30:07Z" + }, + { + "id": 59501392, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-06T15:52:04Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064219-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038290, + "current_revision_id": 45441076, + "description": "PLASTIC-LAMINATE FACED WOOD PANELING", + "label": "064219 - PLASTIC-LAMINATE FACED WOOD PANELING", + "number": "064219", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331107 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic-Laminate-Faced Wood Paneling (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T12:30:07Z" + }, + { + "id": 59501511, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-06T15:53:56Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064219-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038290, + "current_revision_id": 45441076, + "description": "PLASTIC-LAMINATE FACED WOOD PANELING", + "label": "064219 - PLASTIC-LAMINATE FACED WOOD PANELING", + "number": "064219", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331107 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Shop Drawing: Plastic-Laminate-Faced Wood Paneling (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-05T12:30:07Z" + }, + { + "id": 59535189, + "actual_delivery_date": null, + "approvers": [ + { + "id": 143751465, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 131757943, + "additional_page_count": 0, + "attached_at": "2024-12-10T21:32:51Z", + "attachment_id": 5119228756, + "content_type": "application/pdf", + "document_markup_layer_id": 56978380, + "filename": "GMP 001 - 26 24 13 - 1.0 - Swithboards (MSB 1).pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2024-12-10T21:32:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JES7SEMK8H5Y2NN8AQ47R9MA?companyId=8089&projectId=2563870&sig=b2abb37995341bbeaa5ad83dda785726c184c3cc79760c9eb747f07070b3c040", + "version_timestamp": "2024-12-10T21:32:51Z" + } + ], + "comment": "See attached review for comments.", + "days_to_respond": 14, + "due_date": "2024-12-27", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2024-12-10", + "sent_date": "2024-12-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -13, + "workflow_group_number": 2 + }, + { + "id": 143751466, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2024-12-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2024-12-09", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 143751463, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2024-12-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2024-12-09", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 143751462, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 131679040, + "additional_page_count": 1, + "attached_at": "2024-12-09T19:51:41Z", + "attachment_id": 5115993566, + "content_type": "application/pdf", + "document_markup_layer_id": 56909363, + "filename": "GMP 001 - 26 24 13 - 1.0 - Swithboards (MSB 1).pdf", + "markup_updated_at": "2024-12-09T20:02:43Z", + "state": "excluded", + "updated_at": "2024-12-09T20:02:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JEPFKR285AWSE9BNPD2Y1A3K?companyId=8089&projectId=2563870&sig=e38076e9b2eb06dc036fc9efcc7085caa21a423c44d5bc8212bad193919bd544", + "version_timestamp": "2024-12-09T20:02:43Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2024-12-18", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2024-12-09", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 143751460, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 131678819, + "additional_page_count": 1, + "attached_at": "2024-12-09T19:51:41Z", + "attachment_id": 5115993566, + "content_type": "application/pdf", + "document_markup_layer_id": 56909363, + "filename": "GMP 001 - 26 24 13 - 1.0 - Swithboards (MSB 1).pdf", + "markup_updated_at": "2024-12-09T20:02:43Z", + "state": "outdated", + "updated_at": "2024-12-09T19:51:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JEPFKR285AWSE9BNPD2Y1A3K?companyId=8089&projectId=2563870&sig=e38076e9b2eb06dc036fc9efcc7085caa21a423c44d5bc8212bad193919bd544", + "version_timestamp": "2024-12-09T19:51:41Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2024-12-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2024-12-09", + "sent_date": "2024-12-09", + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-09T16:44:43Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": { + "id": 58617, + "label": "2 - Medium" + } + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2024-12-27", + "formatted_number": "26 24 13-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 245, + "linked_drawing_ids": [], + "location_id": 31261558, + "number": "1", + "private": false, + "received_date": "2024-12-06", + "received_from": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037839, + "current_revision_id": 45441306, + "description": "Switchboards", + "label": "26 24 13 - Switchboards", + "number": "26 24 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331577 + }, + "status": { + "id": 2, + "name": "Closed", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2024-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "MSB1 Switchboard ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-17T19:48:20Z" + }, + { + "id": 59634713, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:16:12Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064116-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-03-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037669, + "current_revision_id": 44089108, + "description": "Plastic-Laminate-Clad Architectural Cabinets", + "label": "064116 - Plastic-Laminate-Clad Architectural Cabinets", + "number": "064116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035667 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-02-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764156, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.B", + "specification_section_id": null, + "submittal_ids": [ + 59634713, + 59635478, + 59635239 + ], + "title": "Travis Millwork Closeout", + "updated_at": "2025-08-16T16:28:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic -Laminate-Faced Architectural Cabinets ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-05T12:30:08Z" + }, + { + "id": 59635239, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:24:55Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "066400-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-03-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037670, + "current_revision_id": 45441077, + "description": "PLASTIC PANELING", + "label": "066400 - PLASTIC PANELING", + "number": "066400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331114 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-02-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764156, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.B", + "specification_section_id": null, + "submittal_ids": [ + 59634713, + 59635478, + 59635239 + ], + "title": "Travis Millwork Closeout", + "updated_at": "2025-08-16T16:28:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "PLASTIC-LAMINATE-FACED WOOD PANELING (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-05T12:30:08Z" + }, + { + "id": 59635293, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:26:37Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "066400-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037670, + "current_revision_id": 45441077, + "description": "PLASTIC PANELING", + "label": "066400 - PLASTIC PANELING", + "number": "066400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331114 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic Paneling ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T12:30:09Z" + }, + { + "id": 59635478, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:32:56Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "066400-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-03-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037670, + "current_revision_id": 45441077, + "description": "PLASTIC PANELING", + "label": "066400 - PLASTIC PANELING", + "number": "066400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331114 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-02-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764156, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.B", + "specification_section_id": null, + "submittal_ids": [ + 59634713, + 59635478, + 59635239 + ], + "title": "Travis Millwork Closeout", + "updated_at": "2025-08-16T16:28:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic Paneling (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-05T12:30:09Z" + }, + { + "id": 59635639, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162509258, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143609356, + "additional_page_count": 0, + "attached_at": "2025-08-08T14:20:39Z", + "attachment_id": 5612576978, + "content_type": "application/pdf", + "document_markup_layer_id": 66879085, + "filename": "07 11 13-1.0 - BITUMINOUS DAMPPROOFING_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-08T14:20:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K250TQKGZ6KQC6KTWHFG5JH8?companyId=8089&projectId=2563870&sig=91d153d5731ed87e85e3974b55393b9a9427c2d2a05c5522de4317b8ff37682f", + "version_timestamp": "2025-08-08T14:20:39Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-08-08", + "sent_date": "2025-07-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 4, + "workflow_group_number": 3 + }, + { + "id": 162509255, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143025705, + "additional_page_count": 0, + "attached_at": "2025-07-28T20:04:41Z", + "attachment_id": 5586590002, + "content_type": "application/pdf", + "document_markup_layer_id": 66383764, + "filename": "071113 - ExoAir 120 Submittal - (EE-R&R).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-28T20:04:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K19A5ZGRTQ30A9D3ER69M3PM?companyId=8089&projectId=2563870&sig=512905807de95435bbc03ea059b02cd475a164d57e0824bbc1bb2c4e6c28450b", + "version_timestamp": "2025-07-28T20:04:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": "2025-07-28", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 162509257, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-28", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162509256, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162509253, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142997553, + "additional_page_count": 1, + "attached_at": "2025-07-28T15:39:08Z", + "attachment_id": 5585485272, + "content_type": "application/pdf", + "document_markup_layer_id": 66319355, + "filename": "ExoAir 120 Submittal.pdf", + "markup_updated_at": "2025-07-28T15:40:46Z", + "state": "excluded", + "updated_at": "2025-07-28T15:40:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K18TZYA2ZYXJAB27B6CECSDY?companyId=8089&projectId=2563870&sig=6f38f4eb07265957ca58cda96a9b693c7ae708b5feb58d05e647846a9a94fcf7", + "version_timestamp": "2025-07-28T15:40:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162509254, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162509252, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142997343, + "additional_page_count": 1, + "attached_at": "2025-07-28T15:39:08Z", + "attachment_id": 5585485272, + "content_type": "application/pdf", + "document_markup_layer_id": 66319355, + "filename": "ExoAir 120 Submittal.pdf", + "markup_updated_at": "2025-07-28T15:40:46Z", + "state": "outdated", + "updated_at": "2025-07-28T15:39:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K18TZYA2ZYXJAB27B6CECSDY?companyId=8089&projectId=2563870&sig=6f38f4eb07265957ca58cda96a9b693c7ae708b5feb58d05e647846a9a94fcf7", + "version_timestamp": "2025-07-28T15:39:08Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:37:30Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-12T14:50:49Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": "2025-08-04", + "formatted_number": "071113-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28376246, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39917872, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5612576978, + "content_type": "application/pdf", + "filename": "07 11 13-1.0 - BITUMINOUS DAMPPROOFING_FGMA.pdf", + "source_prostore_file_id": 5612576978, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K250TQKGZ6KQC6KTWHFG5JH8?companyId=8089&projectId=2563870&sig=91d153d5731ed87e85e3974b55393b9a9427c2d2a05c5522de4317b8ff37682f", + "viewable_document_id": 868688214 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 162509258, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-12T14:50:49Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037671, + "current_revision_id": 45441078, + "description": "BITUMINOUS DAMPPROOFING", + "label": "071113 - BITUMINOUS DAMPPROOFING", + "number": "071113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331119 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "BITUMINOUS DAMPPROOFING", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-12T14:50:50Z" + }, + { + "id": 59635728, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156225181, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139427587, + "additional_page_count": 0, + "attached_at": "2025-05-16T15:12:00Z", + "attachment_id": 5432445701, + "content_type": "application/pdf", + "document_markup_layer_id": 63374220, + "filename": "07 13 26-1.0 - Self-adhering Sheet Waterproofing_Elevator Pit-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-16T15:12:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCTD2Z05PYPBMC046VFTM0P?companyId=8089&projectId=2563870&sig=f2ddb1502096468fa543029f773349acf1d47f61da2db54af00320a995d9c19a", + "version_timestamp": "2025-05-16T15:12:00Z" + } + ], + "comment": "See attached response from envelope consultant.", + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 156225182, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156225180, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139190795, + "additional_page_count": 1, + "attached_at": "2025-05-13T13:48:55Z", + "attachment_id": 5423219284, + "content_type": "application/pdf", + "document_markup_layer_id": 63190226, + "filename": "07 13 26 1.0 - Self-adhering Sheet Waterproofing_Elevator Pit (PD).pdf", + "markup_updated_at": "2025-05-13T13:55:46Z", + "state": "excluded", + "updated_at": "2025-05-13T13:55:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV4YF4YZ7PHRM06Y369D1Z0B?companyId=8089&projectId=2563870&sig=47dd0c8bf490dd0587d517a61ba449fd6c623df25a487a023670f31064619a5f", + "version_timestamp": "2025-05-13T13:55:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": "2025-05-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156225179, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156225178, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139190325, + "additional_page_count": 1, + "attached_at": "2025-05-13T13:48:55Z", + "attachment_id": 5423219284, + "content_type": "application/pdf", + "document_markup_layer_id": 63190226, + "filename": "07 13 26 1.0 - Self-adhering Sheet Waterproofing_Elevator Pit (PD).pdf", + "markup_updated_at": "2025-05-13T13:55:46Z", + "state": "outdated", + "updated_at": "2025-05-13T13:48:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV4YF4YZ7PHRM06Y369D1Z0B?companyId=8089&projectId=2563870&sig=47dd0c8bf490dd0587d517a61ba449fd6c623df25a487a023670f31064619a5f", + "version_timestamp": "2025-05-13T13:48:55Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": "2025-05-12", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:40:05Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-16T15:33:57Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-27", + "formatted_number": "071326-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27262149, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38262448, + "comment": "See attached response from envelope consultant.
", + "distributed_attachments": [ + { + "id": 5432445701, + "content_type": "application/pdf", + "filename": "07 13 26-1.0 - Self-adhering Sheet Waterproofing_Elevator Pit-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5432445701, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCTD2Z05PYPBMC046VFTM0P?companyId=8089&projectId=2563870&sig=f2ddb1502096468fa543029f773349acf1d47f61da2db54af00320a995d9c19a", + "viewable_document_id": 837232678 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 156225181, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 6675046, + "initials": "RF", + "name": "Richard Fiebrich", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please resubmit to included noted products and submittals.
", + "sent_at": "2025-05-16T15:33:57Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-05-20", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037672, + "current_revision_id": 44088231, + "description": "Self-Adhering Sheet Waterproofing", + "label": "071326 - Self-Adhering Sheet Waterproofing", + "number": "071326", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023213 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Self-Adhering Sheet Waterproofing: Elevator Pit (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-16T15:34:34Z" + }, + { + "id": 59635755, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156618760, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140276974, + "additional_page_count": 0, + "attached_at": "2025-06-03T17:31:54Z", + "attachment_id": 5467308194, + "content_type": "application/pdf", + "document_markup_layer_id": 64072453, + "filename": "AISD Elevator Walls.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-03T17:31:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVDHVAH83HSXV7W99KRTN9V?companyId=8089&projectId=2563870&sig=db33a5714a67dce818098fd8afbab39ff5a0bda342e870e93acde2931a81958c", + "version_timestamp": "2025-06-03T17:31:54Z" + }, + { + "id": 140276975, + "additional_page_count": 0, + "attached_at": "2025-06-03T17:31:54Z", + "attachment_id": 5467308469, + "content_type": "application/pdf", + "document_markup_layer_id": 64072452, + "filename": "AISD Elevator Pit.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-03T17:31:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVDHZ7SSVMSF34J3DBJX1ZR?companyId=8089&projectId=2563870&sig=848cf34b5d8a4a3655e4a299dce6ed949e8c09e2488ec7a2c47a89f403816ca3", + "version_timestamp": "2025-06-03T17:31:54Z" + } + ], + "comment": "Shop Drawings for Elevator Pits\u00a0", + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 156618765, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156618764, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156618763, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156618762, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156618761, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:40:45Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-15", + "formatted_number": "071326-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037672, + "current_revision_id": 44088231, + "description": "Self-Adhering Sheet Waterproofing", + "label": "071326 - Self-Adhering Sheet Waterproofing", + "number": "071326", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023213 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Shop Drawing : Self-Adhering Sheet Waterproofing (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-10T17:23:17Z" + }, + { + "id": 59635898, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156832930, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156832933, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156832932, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156832931, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:42:09Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-24", + "formatted_number": "071326-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037672, + "current_revision_id": 44088231, + "description": "Self-Adhering Sheet Waterproofing", + "label": "071326 - Self-Adhering Sheet Waterproofing", + "number": "071326", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023213 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Samples : Self-Adhering Sheet Waterproofing (S)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-06-10T17:23:36Z" + }, + { + "id": 59636387, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158972801, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158972799, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141144203, + "additional_page_count": 0, + "attached_at": "2025-06-19T16:19:33Z", + "attachment_id": 5503805576, + "content_type": "application/pdf", + "document_markup_layer_id": 64949586, + "filename": "07 19 00-1.0 - Water Repellents_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-19T16:19:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4FSFZHE56X5F5E10AAN8J2?companyId=8089&projectId=2563870&sig=47cb0e6d6c032d203473ab517dc23daa592253c15016b97ec7ab556c1d2515a0", + "version_timestamp": "2025-06-19T16:19:33Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158972800, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158972798, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158972796, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140863662, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:35:02Z", + "attachment_id": 5491930966, + "content_type": "application/pdf", + "document_markup_layer_id": 64552443, + "filename": "07 19 00 - 1.0 - Water Repellents (PD).pdf", + "markup_updated_at": "2025-06-13T19:35:51Z", + "state": "excluded", + "updated_at": "2025-06-13T19:35:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNCKH2A35KDP1PVQKME052Y?companyId=8089&projectId=2563870&sig=176566472cdf17d3354f22f5345ce2dac07362d2107c7ec8304edb1c61638a64", + "version_timestamp": "2025-06-13T19:35:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158972797, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158972795, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140863561, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:35:02Z", + "attachment_id": 5491930966, + "content_type": "application/pdf", + "document_markup_layer_id": 64552443, + "filename": "07 19 00 - 1.0 - Water Repellents (PD).pdf", + "markup_updated_at": "2025-06-13T19:35:51Z", + "state": "outdated", + "updated_at": "2025-06-13T19:35:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNCKH2A35KDP1PVQKME052Y?companyId=8089&projectId=2563870&sig=176566472cdf17d3354f22f5345ce2dac07362d2107c7ec8304edb1c61638a64", + "version_timestamp": "2025-06-13T19:35:02Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:54:36Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-24T14:34:11Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "071900-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27753641, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38997216, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5503805576, + "content_type": "application/pdf", + "filename": "07 19 00-1.0 - Water Repellents_FGMA.pdf", + "source_prostore_file_id": 5503805576, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4FSFZHE56X5F5E10AAN8J2?companyId=8089&projectId=2563870&sig=47cb0e6d6c032d203473ab517dc23daa592253c15016b97ec7ab556c1d2515a0", + "viewable_document_id": 849831256 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 158972799, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-24T14:34:11Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037673, + "current_revision_id": 44212977, + "description": "Water Repellents", + "label": "071900 - Water Repellents", + "number": "071900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 780010312 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Water Repellents ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-24T14:34:16Z" + }, + { + "id": 59636455, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T14:56:47Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "071900-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037673, + "current_revision_id": 44212977, + "description": "Water Repellents", + "label": "071900 - Water Repellents", + "number": "071900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 780010312 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Water Repellents ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:06Z" + }, + { + "id": 59636575, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157255206, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140432380, + "additional_page_count": 0, + "attached_at": "2025-06-05T18:27:11Z", + "attachment_id": 5473685717, + "content_type": "application/pdf", + "document_markup_layer_id": 64203393, + "filename": "07 21 00-1.0 - Thermal Insulation-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-05T18:27:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0NH1MAJAAKFCSBW4T8YWRK?companyId=8089&projectId=2563870&sig=508a7792c32e5285420822653d8a636bac49024c3cf7174d528cda0bb8560071", + "version_timestamp": "2025-06-05T18:27:11Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-05", + "sent_date": "2025-05-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157255205, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139839662, + "additional_page_count": 1, + "attached_at": "2025-05-24T13:58:01Z", + "attachment_id": 5449007122, + "content_type": "application/pdf", + "document_markup_layer_id": 63701957, + "filename": "072100 - Insulation.pdf", + "markup_updated_at": "2025-05-24T14:02:10Z", + "state": "excluded", + "updated_at": "2025-05-24T14:02:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW19BTB5RHZENZJSHPRDJ1GG?companyId=8089&projectId=2563870&sig=f25a8cd61769dc3dbe822cbed1ed4eee2fe0e08e07d508a65c147f35c462d7b7", + "version_timestamp": "2025-05-24T14:02:10Z" + } + ], + "comment": "Please review and approve.", + "days_to_respond": 5, + "due_date": "2025-06-02", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-24", + "sent_date": "2025-05-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157255204, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157255203, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139839606, + "additional_page_count": 1, + "attached_at": "2025-05-24T13:58:01Z", + "attachment_id": 5449007122, + "content_type": "application/pdf", + "document_markup_layer_id": 63701957, + "filename": "072100 - Insulation.pdf", + "markup_updated_at": "2025-05-24T14:02:10Z", + "state": "outdated", + "updated_at": "2025-05-24T13:58:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW19BTB5RHZENZJSHPRDJ1GG?companyId=8089&projectId=2563870&sig=f25a8cd61769dc3dbe822cbed1ed4eee2fe0e08e07d508a65c147f35c462d7b7", + "version_timestamp": "2025-05-24T13:58:01Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -15, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T15:00:02Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-05T20:00:53Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "072100-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27521089, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38653014, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5473685717, + "content_type": "application/pdf", + "filename": "07 21 00-1.0 - Thermal Insulation-PD_FGMA.pdf", + "source_prostore_file_id": 5473685717, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0NH1MAJAAKFCSBW4T8YWRK?companyId=8089&projectId=2563870&sig=508a7792c32e5285420822653d8a636bac49024c3cf7174d528cda0bb8560071", + "viewable_document_id": 844627344 + } + ], + "response_name": "Approved", + "submittal_approver_id": 157255206, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-05T20:00:53Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-06-25", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037674, + "current_revision_id": 44088233, + "description": "Thermal Insulation", + "label": "072100 - Thermal Insulation", + "number": "072100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023223 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Thermal Insulation (PD) ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-05T20:00:54Z" + }, + { + "id": 59636595, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158970128, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141858695, + "additional_page_count": 0, + "attached_at": "2025-07-03T17:52:27Z", + "attachment_id": 5535085735, + "content_type": "application/pdf", + "document_markup_layer_id": 65482704, + "filename": "07 21 00-2.0 - Board Insulation-Continuous Wall_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-03T17:52:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8PMMKPYYDCTRXFZ2EPD8S6?companyId=8089&projectId=2563870&sig=3394e6cf547ca5d981425ef573bc11b452a4f299b5d50e1947ee5d09043453f1", + "version_timestamp": "2025-07-03T17:52:27Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-03", + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 5, + "workflow_group_number": 3 + }, + { + "id": 158970125, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141170521, + "additional_page_count": 0, + "attached_at": "2025-06-19T21:01:13Z", + "attachment_id": 5504848173, + "content_type": "application/pdf", + "document_markup_layer_id": 64824461, + "filename": "072100 - 2.0 - Board Insulation - (EE-R&R).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-19T21:01:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4ZXGCD77Q5YP8AKV3MM86N?companyId=8089&projectId=2563870&sig=c61222efa1acb5796b49630f7aacd62465e747e2bf728c0f379f24ff83395980", + "version_timestamp": "2025-06-19T21:01:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-13", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158970127, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158970126, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158970121, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140861810, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:15:33Z", + "attachment_id": 5491858963, + "content_type": "application/pdf", + "document_markup_layer_id": 64551313, + "filename": "072100 - 2.0 - Board Insulation.pdf", + "markup_updated_at": "2025-06-13T19:17:41Z", + "state": "excluded", + "updated_at": "2025-06-13T19:17:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNBFW4T7FTB4XRT74VA5ZS6?companyId=8089&projectId=2563870&sig=6b84eb6a16ed3248433c22ee826ace43700e0d2b4850b43e2b4f8598c825ab29", + "version_timestamp": "2025-06-13T19:17:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158970123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158970119, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140861626, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:15:33Z", + "attachment_id": 5491858963, + "content_type": "application/pdf", + "document_markup_layer_id": 64551313, + "filename": "072100 - 2.0 - Board Insulation.pdf", + "markup_updated_at": "2025-06-13T19:17:41Z", + "state": "outdated", + "updated_at": "2025-06-13T19:15:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNBFW4T7FTB4XRT74VA5ZS6?companyId=8089&projectId=2563870&sig=6b84eb6a16ed3248433c22ee826ace43700e0d2b4850b43e2b4f8598c825ab29", + "version_timestamp": "2025-06-13T19:15:33Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T15:00:35Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-03T19:16:29Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "072100-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27890342, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39198622, + "comment": null, + "distributed_attachments": [ + { + "id": 5535085735, + "content_type": "application/pdf", + "filename": "07 21 00-2.0 - Board Insulation-Continuous Wall_FGMA.pdf", + "source_prostore_file_id": 5535085735, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8PMMKPYYDCTRXFZ2EPD8S6?companyId=8089&projectId=2563870&sig=3394e6cf547ca5d981425ef573bc11b452a4f299b5d50e1947ee5d09043453f1", + "viewable_document_id": 855352613 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158970128, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-03T19:16:29Z" + }, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2026-04-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037674, + "current_revision_id": 44088233, + "description": "Thermal Insulation", + "label": "072100 - Thermal Insulation", + "number": "072100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023223 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Board Insulation : Continuous Wall", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-03T19:16:29Z" + }, + { + "id": 59636815, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156831047, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142214610, + "additional_page_count": 0, + "attached_at": "2025-07-11T15:16:56Z", + "attachment_id": 5550944026, + "content_type": "application/pdf", + "document_markup_layer_id": 65686656, + "filename": "07 21 19.01-1.0 - Foamed-In-Place Insulation-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T15:16:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX0YN1DDKFEDK3FCE2G951D?companyId=8089&projectId=2563870&sig=3504a3daf9b79e18d3217515511ad7ce35874b3a4b21a4afef24fdb76294b39f", + "version_timestamp": "2025-07-11T15:16:56Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-07-23", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 156831046, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142088167, + "additional_page_count": 0, + "attached_at": "2025-07-09T17:32:08Z", + "attachment_id": 5545581675, + "content_type": "application/pdf", + "document_markup_layer_id": 65565921, + "filename": "07 21 19.01 1.0 - Foamed-in-place Insulation (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-09T17:32:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZR3WQ6YBX209S41FFFZSSGC?companyId=8089&projectId=2563870&sig=db2c819b0379fbd50a69b31e527b1ea846d5fa26f6f4ec0f9d2673c7ae831372", + "version_timestamp": "2025-07-09T17:32:08Z" + } + ], + "comment": "Please review and approve.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156831045, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156831044, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142067846, + "additional_page_count": 0, + "attached_at": "2025-07-09T14:22:35Z", + "attachment_id": 5544823135, + "content_type": "application/pdf", + "document_markup_layer_id": 65549669, + "filename": "07 21 19.01 1.0 - Foamed-in-place Insulation (PD).pdf", + "markup_updated_at": "2025-07-09T17:30:10Z", + "state": "excluded", + "updated_at": "2025-07-09T14:22:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQS143HAC5V7P69DJ343MG9?companyId=8089&projectId=2563870&sig=2ccea67ea66eec39e1518bc433177a28460c3467d252cfd11d4f0bf22eaf319e", + "version_timestamp": "2025-07-09T14:22:35Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-23", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-18", + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -25, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T15:06:39Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-11T19:00:51Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-23", + "formatted_number": "072119.01-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27986344, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39340211, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5550944026, + "content_type": "application/pdf", + "filename": "07 21 19.01-1.0 - Foamed-In-Place Insulation-PD_FGMA.pdf", + "source_prostore_file_id": 5550944026, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX0YN1DDKFEDK3FCE2G951D?companyId=8089&projectId=2563870&sig=3504a3daf9b79e18d3217515511ad7ce35874b3a4b21a4afef24fdb76294b39f", + "viewable_document_id": 857955846 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156831047, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T19:00:51Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-06-25", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096753, + "current_revision_id": 45441084, + "description": "Foamed-In-Place Insulation", + "label": "072119.01 - Foamed-In-Place Insulation", + "number": "072119.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331140 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Foamed-In-Place Insulation (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-11T19:00:51Z" + }, + { + "id": 59636960, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T15:10:55Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "072119-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037675, + "current_revision_id": 44088234, + "description": "Foamed-In-Place Insulation", + "label": "072119 - Foamed-In-Place Insulation", + "number": "072119", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023227 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Warranty : Foamed-In-Place Insulation ", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:08Z" + }, + { + "id": 59638599, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158970961, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141420394, + "additional_page_count": 0, + "attached_at": "2025-06-25T15:29:53Z", + "attachment_id": 5516106003, + "content_type": "application/pdf", + "document_markup_layer_id": 65445820, + "filename": "07 27 26-1.0 - Fluid-Applied Membrane Air Barriers_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-25T15:29:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKVAMEKJWZDGGT6YC7HH7E0?companyId=8089&projectId=2563870&sig=e498a3112bea4c006e4442fb26111b7275178ce2de6e2aa6746f03b66d6fcefb", + "version_timestamp": "2025-06-25T15:29:53Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-25", + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 158970958, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141170610, + "additional_page_count": 0, + "attached_at": "2025-06-19T21:02:24Z", + "attachment_id": 5504851006, + "content_type": "application/pdf", + "document_markup_layer_id": 64825136, + "filename": "07 27 26 - 1.0 - Fluied Applied Air Barrier and flashing - (EE-NCN).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-19T21:02:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4ZYSCY7DCG4FTC62H6YS23?companyId=8089&projectId=2563870&sig=346ce05e69e8df7f78252612a1b640610c2bbd0e2dc2e0f04433c78fc8e4eb98", + "version_timestamp": "2025-06-19T21:02:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-13", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158970960, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158970959, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158970956, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140862395, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:20:45Z", + "attachment_id": 5491877919, + "content_type": "application/pdf", + "document_markup_layer_id": 64551706, + "filename": "07 27 26 - 1.0 - Fluied Applied Air Barrier and flashing.pdf", + "markup_updated_at": "2025-06-13T19:23:47Z", + "state": "excluded", + "updated_at": "2025-06-13T19:23:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNBSAD7ZFM93VRV8PR8JTC5?companyId=8089&projectId=2563870&sig=f5b528a3269d68e39c2c84b7ee79154e40f1c18adc0364cf98dbdad30d995b20", + "version_timestamp": "2025-06-13T19:23:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158970957, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158970955, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140862138, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:20:45Z", + "attachment_id": 5491877919, + "content_type": "application/pdf", + "document_markup_layer_id": 64551706, + "filename": "07 27 26 - 1.0 - Fluied Applied Air Barrier and flashing.pdf", + "markup_updated_at": "2025-06-13T19:23:47Z", + "state": "outdated", + "updated_at": "2025-06-13T19:20:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNBSAD7ZFM93VRV8PR8JTC5?companyId=8089&projectId=2563870&sig=f5b528a3269d68e39c2c84b7ee79154e40f1c18adc0364cf98dbdad30d995b20", + "version_timestamp": "2025-06-13T19:20:45Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T15:44:38Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-27T21:36:42Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "072726-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27818078, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39092351, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5516106003, + "content_type": "application/pdf", + "filename": "07 27 26-1.0 - Fluid-Applied Membrane Air Barriers_FGMA.pdf", + "source_prostore_file_id": 5516106003, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKVAMEKJWZDGGT6YC7HH7E0?companyId=8089&projectId=2563870&sig=e498a3112bea4c006e4442fb26111b7275178ce2de6e2aa6746f03b66d6fcefb", + "viewable_document_id": 852055751 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158970961, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-27T21:36:42Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037676, + "current_revision_id": 45441085, + "description": "FLUID-APPLIED MEMBRANE AIR BARRIERS", + "label": "072726 - FLUID-APPLIED MEMBRANE AIR BARRIERS", + "number": "072726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331145 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-19", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fluid-Applied Membrane Air Barriers ", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-27T21:36:42Z" + }, + { + "id": 59641561, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156832942, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156832945, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156832944, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156832943, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T16:48:48Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-24", + "formatted_number": "072726-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037676, + "current_revision_id": 45441085, + "description": "FLUID-APPLIED MEMBRANE AIR BARRIERS", + "label": "072726 - FLUID-APPLIED MEMBRANE AIR BARRIERS", + "number": "072726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331145 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-19", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fluid-Applied Membrane Air Barriers ", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-13T19:38:01Z" + }, + { + "id": 59648454, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T19:18:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "074213-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-11", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037677, + "current_revision_id": 44088237, + "description": "Metal Wall Panels", + "label": "074213 - Metal Wall Panels", + "number": "074213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Formed Metal Wall Panels (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-20T13:07:29Z" + }, + { + "id": 59648493, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T19:19:27Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "074213-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-11", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037677, + "current_revision_id": 44088237, + "description": "Metal Wall Panels", + "label": "074213 - Metal Wall Panels", + "number": "074213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Shop drawing : Formed Metal Wall Panels (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-20T13:07:33Z" + }, + { + "id": 59648545, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-12T19:20:42Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "074213-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-11", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037677, + "current_revision_id": 44088237, + "description": "Metal Wall Panels", + "label": "074213 - Metal Wall Panels", + "number": "074213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sample : Formed Metal Wall Panels (S)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-20T13:07:25Z" + }, + { + "id": 59675795, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-13T16:58:15Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "074633-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038915, + "current_revision_id": 45441088, + "description": "NFC WALL SIDING", + "label": "074633 - NFC WALL SIDING", + "number": "074633", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331159 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "NFC Wall Siding (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-20T13:07:42Z" + }, + { + "id": 59675832, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-13T16:59:01Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "074633-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038915, + "current_revision_id": 45441088, + "description": "NFC WALL SIDING", + "label": "074633 - NFC WALL SIDING", + "number": "074633", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331159 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "NFC Wall Siding (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-20T13:07:46Z" + }, + { + "id": 59677723, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2024-12-13T17:43:33Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "075419-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037678, + "current_revision_id": 44086519, + "description": "POLYVINYL CHLORIDE (PVC) ROOFING", + "label": "075419 - POLYVINYL CHLORIDE (PVC) ROOFING", + "number": "075419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776992901 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Polyvinyl-Chloride PVC Roofing (PD)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:11Z" + }, + { + "id": 60117799, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475984, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139137425, + "additional_page_count": 0, + "attached_at": "2025-05-12T18:13:25Z", + "attachment_id": 5421299137, + "content_type": "application/pdf", + "document_markup_layer_id": 63149802, + "filename": "08 11 13-1.0 - Area C Interior and Exterior Frames-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-12T18:13:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2V6A5ABT7ZSV48GVG1CTA9?companyId=8089&projectId=2563870&sig=24bc00cf20535db837a38b62c41808704c481cdd948f137e176d61a01d13c890", + "version_timestamp": "2025-05-12T18:13:25Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 155475986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475983, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138764226, + "additional_page_count": 0, + "attached_at": "2025-05-05T17:55:56Z", + "attachment_id": 5406610385, + "content_type": "application/pdf", + "document_markup_layer_id": 62849450, + "filename": "08 11 13 1.0- Area C_Interior and Exterior Frames (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-05T17:55:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGSCNWR86EJKBDCWSR4YYWB?companyId=8089&projectId=2563870&sig=5f9db19d8ee6ff850982a5063dc5385b5095e959e8d23284c423d47f23965805", + "version_timestamp": "2025-05-05T17:55:56Z" + } + ], + "comment": "Please provide priority review.", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155475981, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475980, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138733301, + "additional_page_count": 1, + "attached_at": "2025-05-05T13:19:28Z", + "attachment_id": 5405525102, + "content_type": "application/pdf", + "document_markup_layer_id": 62848174, + "filename": "08 11 13 1.0- Area C_Interior and Exterior Frames (SD).pdf", + "markup_updated_at": "2025-05-05T17:53:44Z", + "state": "excluded", + "updated_at": "2025-05-05T13:19:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTG9KETT9H9CACGABZ7QD5ZB?companyId=8089&projectId=2563870&sig=07220b7737a31d2be29cf5658b92ac928a6856ed3ec23b510208d13d6d1e3197", + "version_timestamp": "2025-05-05T13:19:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-02", + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T19:21:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-12T20:22:23Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-19", + "formatted_number": "081113-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27194217, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38159957, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5421299137, + "content_type": "application/pdf", + "filename": "08 11 13-1.0 - Area C Interior and Exterior Frames-SD_FGMA.pdf", + "source_prostore_file_id": 5421299137, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2V6A5ABT7ZSV48GVG1CTA9?companyId=8089&projectId=2563870&sig=24bc00cf20535db837a38b62c41808704c481cdd948f137e176d61a01d13c890", + "viewable_document_id": 835418616 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155475984, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4393078, + "initials": "SM", + "name": "Sasha Meacham", + "vendor_name": "LaForce, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-05-12T20:22:23Z" + }, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-01-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C: Interior and Exterior Frames (SD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-12T20:22:23Z" + }, + { + "id": 60118099, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159749271, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141675410, + "additional_page_count": 0, + "attached_at": "2025-07-01T01:30:28Z", + "attachment_id": 5527162031, + "content_type": "application/pdf", + "document_markup_layer_id": 65233835, + "filename": "08 11 13-2.0 - Hollow Metal Doors and Frames (Area A and Area B)_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-01T01:30:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ1SJRJXCNRV3CSV93BGK2E9?companyId=8089&projectId=2563870&sig=30b57fd13d05dc98b98e6e60e2197164ebe65b47d2fb03fcf176ec725837f7bc", + "version_timestamp": "2025-07-01T01:30:28Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-30", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 159749273, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159749267, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141330464, + "additional_page_count": 1, + "attached_at": "2025-06-24T12:33:26Z", + "attachment_id": 5512320368, + "content_type": "application/pdf", + "document_markup_layer_id": 64940466, + "filename": "081113 - 2.0 - Hollow Metal Doors and Frames (Area A and B).pdf", + "markup_updated_at": "2025-06-24T12:48:18Z", + "state": "excluded", + "updated_at": "2025-06-24T12:48:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYGYV93YKN12ZGR0YD3MVVGR?companyId=8089&projectId=2563870&sig=8092569ad795599a0649c8b3f4bcf23620b83feb8279d889b63309b637b6cfcf", + "version_timestamp": "2025-06-24T12:48:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159749269, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159749265, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141329468, + "additional_page_count": 1, + "attached_at": "2025-06-24T12:33:26Z", + "attachment_id": 5512320368, + "content_type": "application/pdf", + "document_markup_layer_id": 64940466, + "filename": "081113 - 2.0 - Hollow Metal Doors and Frames (Area A and B).pdf", + "markup_updated_at": "2025-06-24T12:48:18Z", + "state": "outdated", + "updated_at": "2025-06-24T12:33:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYGYV93YKN12ZGR0YD3MVVGR?companyId=8089&projectId=2563870&sig=8092569ad795599a0649c8b3f4bcf23620b83feb8279d889b63309b637b6cfcf", + "version_timestamp": "2025-06-24T12:33:25Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T19:25:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-01T14:00:26Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-07-08", + "formatted_number": "081113-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27845586, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39134376, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5527162031, + "content_type": "application/pdf", + "filename": "08 11 13-2.0 - Hollow Metal Doors and Frames (Area A and Area B)_FGMA.pdf", + "source_prostore_file_id": 5527162031, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ1SJRJXCNRV3CSV93BGK2E9?companyId=8089&projectId=2563870&sig=30b57fd13d05dc98b98e6e60e2197164ebe65b47d2fb03fcf176ec725837f7bc", + "viewable_document_id": 853995577 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 159749271, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4393078, + "initials": "SM", + "name": "Sasha Meacham", + "vendor_name": "LaForce, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-01T14:00:26Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hollow Metal Doors and Frames (Area A and Area B)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-01T14:00:26Z" + }, + { + "id": 60118211, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476054, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476053, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476052, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476051, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476050, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T19:27:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-01-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "TEMPLATE:FUTURE USE", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:03Z" + }, + { + "id": 60118281, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475991, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475990, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475989, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475988, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475987, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T19:28:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-01-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hollow Metal Doors and Frames (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-05T13:15:01Z" + }, + { + "id": 60118386, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T19:30:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081113-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857688, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.D", + "specification_section_id": null, + "submittal_ids": [ + 60120775, + 60120815, + 60118386 + ], + "title": "LaForce Closeout Submittals", + "updated_at": "2025-04-02T12:35:02Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hollow Metal Doors and Frames (Record Documents)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-04-02T12:36:36Z" + }, + { + "id": 60120518, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476021, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142191817, + "additional_page_count": 0, + "attached_at": "2025-07-11T02:23:55Z", + "attachment_id": 5549889283, + "content_type": "application/pdf", + "document_markup_layer_id": 65660791, + "filename": "08 14 16-1.0 - Wood Doors-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T02:23:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVMQ56JYA1KPME6HJFWJQ8N?companyId=8089&projectId=2563870&sig=27e8ca1edd98b3a33fe49cbacb2e0165f0c4d677d193b6324a7a5c6fa94a3323", + "version_timestamp": "2025-07-11T02:23:55Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 155476022, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476019, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141331169, + "additional_page_count": 1, + "attached_at": "2025-06-24T12:53:58Z", + "attachment_id": 5512387209, + "content_type": "application/pdf", + "document_markup_layer_id": 64941258, + "filename": "081416 - 1.0 - Wood Doors.pdf", + "markup_updated_at": "2025-06-24T12:55:14Z", + "state": "excluded", + "updated_at": "2025-06-24T12:55:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH00RM2ZRA5DQ2ACE0RK7MA?companyId=8089&projectId=2563870&sig=d0fc50ec62f40fc0fde016e9a087964a606c2f761d3a5328afebbe0828f32852", + "version_timestamp": "2025-06-24T12:55:14Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155476020, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476018, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141331064, + "additional_page_count": 1, + "attached_at": "2025-06-24T12:53:58Z", + "attachment_id": 5512387209, + "content_type": "application/pdf", + "document_markup_layer_id": 64941258, + "filename": "081416 - 1.0 - Wood Doors.pdf", + "markup_updated_at": "2025-06-24T12:55:14Z", + "state": "outdated", + "updated_at": "2025-06-24T12:53:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH00RM2ZRA5DQ2ACE0RK7MA?companyId=8089&projectId=2563870&sig=d0fc50ec62f40fc0fde016e9a087964a606c2f761d3a5328afebbe0828f32852", + "version_timestamp": "2025-06-24T12:53:58Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:11:00Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-17T13:20:17Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-07-08", + "formatted_number": "081416-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28053024, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439555, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5549889283, + "content_type": "application/pdf", + "filename": "08 14 16-1.0 - Wood Doors-PD_FGMA.pdf", + "source_prostore_file_id": 5549889283, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVMQ56JYA1KPME6HJFWJQ8N?companyId=8089&projectId=2563870&sig=27e8ca1edd98b3a33fe49cbacb2e0165f0c4d677d193b6324a7a5c6fa94a3323", + "viewable_document_id": 857757785 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155476021, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4393078, + "initials": "SM", + "name": "Sasha Meacham", + "vendor_name": "LaForce, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T13:20:17Z" + }, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-10-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wood Doors (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T13:20:17Z" + }, + { + "id": 60120569, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475925, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475924, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475923, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475922, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475921, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:12:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Flush Wood Doors (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:14:56Z" + }, + { + "id": 60120680, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476017, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476016, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476015, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476014, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476012, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:14:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C: Flush Wood Doors (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:02Z" + }, + { + "id": 60120728, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475930, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475929, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475928, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475927, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475926, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:15:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 30, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-01", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Flush Wood Doors (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-05T13:14:57Z" + }, + { + "id": 60120775, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:16:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081416-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857688, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.D", + "specification_section_id": null, + "submittal_ids": [ + 60120775, + 60120815, + 60118386 + ], + "title": "LaForce Closeout Submittals", + "updated_at": "2025-04-02T12:35:02Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Flush Wood Doors (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-04-02T12:36:21Z" + }, + { + "id": 60120815, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:17:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081416-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857688, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.D", + "specification_section_id": null, + "submittal_ids": [ + 60120775, + 60120815, + 60118386 + ], + "title": "LaForce Closeout Submittals", + "updated_at": "2025-04-02T12:35:02Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Flush Wood Doors (Record Documents)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-04-02T12:37:34Z" + }, + { + "id": 60121006, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:20:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:16Z" + }, + { + "id": 60121059, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:22:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (Sustainable Design)", + "type": { + "id": -1, + "name": "Other", + "translated_name": "Other" + }, + "updated_at": "2025-03-06T12:30:16Z" + }, + { + "id": 60121084, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:22:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:30:17Z" + }, + { + "id": 60121106, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:23:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:17Z" + }, + { + "id": 60121153, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:24:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (Schedule)", + "type": { + "id": -1, + "name": "Schedule", + "translated_name": "Schedule" + }, + "updated_at": "2025-03-06T12:30:18Z" + }, + { + "id": 60121198, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:25:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "081816.16-1-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36527971, + "current_revision_id": 44717595, + "description": "MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "label": "081816.16-1 - MULTIPANEL SLIDING ALUM-FRAMED DOORS", + "number": "081816.16-1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Multipanel Sliding Aluminum Framed Glass Doors (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:18Z" + }, + { + "id": 60121260, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:26:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083113-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-05", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037688, + "current_revision_id": 45441101, + "description": "ACCESS DOORS AND FRAMES", + "label": "083113 - ACCESS DOORS AND FRAMES", + "number": "083113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331225 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Doors and Frames (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:19Z" + }, + { + "id": 60121297, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:26:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-05", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037688, + "current_revision_id": 45441101, + "description": "ACCESS DOORS AND FRAMES", + "label": "083113 - ACCESS DOORS AND FRAMES", + "number": "083113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331225 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Doors and Frames (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:20Z" + }, + { + "id": 60121470, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:30:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083113-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037688, + "current_revision_id": 45441101, + "description": "ACCESS DOORS AND FRAMES", + "label": "083113 - ACCESS DOORS AND FRAMES", + "number": "083113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331225 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Doors and Frames (Record Documents)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-06T12:30:21Z" + }, + { + "id": 60121634, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:33:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083313-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 90, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038918, + "current_revision_id": 45441102, + "description": "COILING COUNTER DOORS", + "label": "083313 - COILING COUNTER DOORS", + "number": "083313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331227 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Coiling Counter Doors (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:21Z" + }, + { + "id": 60121688, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:33:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083313-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 90, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038918, + "current_revision_id": 45441102, + "description": "COILING COUNTER DOORS", + "label": "083313 - COILING COUNTER DOORS", + "number": "083313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331227 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Coiling Counter Doors (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:30:22Z" + }, + { + "id": 60121704, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:34:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083313-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 90, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038918, + "current_revision_id": 45441102, + "description": "COILING COUNTER DOORS", + "label": "083313 - COILING COUNTER DOORS", + "number": "083313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331227 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Coiling Counter Doors (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:22Z" + }, + { + "id": 60121750, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:35:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083313-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038918, + "current_revision_id": 45441102, + "description": "COILING COUNTER DOORS", + "label": "083313 - COILING COUNTER DOORS", + "number": "083313", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331227 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Coiling Counter Doors (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:23Z" + }, + { + "id": 60122103, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:40:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:23Z" + }, + { + "id": 60122125, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:41:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:30:24Z" + }, + { + "id": 60122150, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:41:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:24Z" + }, + { + "id": 60122226, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:43:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:25Z" + }, + { + "id": 60122284, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:44:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:25Z" + }, + { + "id": 60122321, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T20:44:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "083323-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037689, + "current_revision_id": 45441104, + "description": "OVERHEAD COILING DOORS", + "label": "083323 - OVERHEAD COILING DOORS", + "number": "083323", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331232 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overhead Coiling Doors (Record Documents)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-06T12:30:26Z" + }, + { + "id": 60123829, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158764715, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141354038, + "additional_page_count": 0, + "attached_at": "2025-06-24T16:44:40Z", + "attachment_id": 5513334621, + "content_type": "application/pdf", + "document_markup_layer_id": 64963168, + "filename": "08 41 13-1.0 - Storefronts-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-24T16:44:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHD6NYJZ44ESTTENZY5N3FJ?companyId=8089&projectId=2563870&sig=d969095eb1a92f3ba9540ce9775c8964f53ecc6425bd23d1c3f16ff03406c8e1", + "version_timestamp": "2025-06-24T16:44:40Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 158764713, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140824372, + "additional_page_count": 0, + "attached_at": "2025-06-13T12:53:58Z", + "attachment_id": 5490417088, + "content_type": "application/pdf", + "document_markup_layer_id": 64529229, + "filename": "08 41 13 -1.0 - Storefront (PD) - (EE-NCN).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-13T12:53:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMNN3FP7Z520JMC1P89V086?companyId=8089&projectId=2563870&sig=060772dc42cd441d7466a732ddc327459b483f9e758d27049c51a22933cf84d6", + "version_timestamp": "2025-06-13T12:53:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-11", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 158764714, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158764711, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140742186, + "additional_page_count": 1, + "attached_at": "2025-06-11T21:18:56Z", + "attachment_id": 5486643984, + "content_type": "application/pdf", + "document_markup_layer_id": 64454463, + "filename": "08 41 13 -1.0 - Storefront (PD).pdf", + "markup_updated_at": "2025-06-11T21:20:50Z", + "state": "excluded", + "updated_at": "2025-06-11T21:20:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXGDQPFHDNZQWWXKR5S0VVNX?companyId=8089&projectId=2563870&sig=e12eaff50542b1240e952105b32688d6bd492d50a82bb5f3355387f5bd1e3c26", + "version_timestamp": "2025-06-11T21:20:50Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158764712, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158764710, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140742060, + "additional_page_count": 1, + "attached_at": "2025-06-11T21:18:56Z", + "attachment_id": 5486643984, + "content_type": "application/pdf", + "document_markup_layer_id": 64454463, + "filename": "08 41 13 -1.0 - Storefront (PD).pdf", + "markup_updated_at": "2025-06-11T21:20:50Z", + "state": "outdated", + "updated_at": "2025-06-11T21:18:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXGDQPFHDNZQWWXKR5S0VVNX?companyId=8089&projectId=2563870&sig=e12eaff50542b1240e952105b32688d6bd492d50a82bb5f3355387f5bd1e3c26", + "version_timestamp": "2025-06-11T21:18:56Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:18:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-24T16:57:13Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-20", + "formatted_number": "084113-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27758030, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39003201, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5513334621, + "content_type": "application/pdf", + "filename": "08 41 13-1.0 - Storefronts-PD_FGMA.pdf", + "source_prostore_file_id": 5513334621, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHD6NYJZ44ESTTENZY5N3FJ?companyId=8089&projectId=2563870&sig=d969095eb1a92f3ba9540ce9775c8964f53ecc6425bd23d1c3f16ff03406c8e1", + "viewable_document_id": 851564331 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158764715, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-24T16:57:13Z" + }, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Storefronts (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-24T16:57:14Z" + }, + { + "id": 60123869, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158748459, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141346099, + "additional_page_count": 0, + "attached_at": "2025-06-24T15:28:09Z", + "attachment_id": 5513029903, + "content_type": "application/pdf", + "document_markup_layer_id": 64962992, + "filename": "08 41 13-2.0 - Exterior Storefronts-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-24T15:28:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH8TRYPSMPM0BXKPVDQGGE3?companyId=8089&projectId=2563870&sig=1e0699e2ac9b8d8d9072a6d82a9a6003652348a22298c45efa3a2a1c85d0f82c", + "version_timestamp": "2025-06-24T15:28:09Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 158748457, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140824395, + "additional_page_count": 0, + "attached_at": "2025-06-13T12:54:25Z", + "attachment_id": 5490418189, + "content_type": "application/pdf", + "document_markup_layer_id": 64528700, + "filename": "08 41 13 - 2.0 - Exterior Storefronts (SD) - (EE-R&R).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-13T12:54:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMNNT3R702D9QVVE11WMN37?companyId=8089&projectId=2563870&sig=8185a4635fb620b09f1b33d89b746d0a7ec9c94eb41df4f2748d0a5bd5d552c5", + "version_timestamp": "2025-06-13T12:54:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-11", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 158748458, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158748455, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140732029, + "additional_page_count": 1, + "attached_at": "2025-06-11T19:32:21Z", + "attachment_id": 5486249075, + "content_type": "application/pdf", + "document_markup_layer_id": 64446750, + "filename": "08 41 13 - 2.0 - Exterior Storefronts (SD).pdf", + "markup_updated_at": "2025-06-11T19:41:12Z", + "state": "excluded", + "updated_at": "2025-06-11T19:41:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXG7N206WN4PC3GJ2HFHG7DY?companyId=8089&projectId=2563870&sig=a4e023d909a52a581513e2f8493f1880a9ea17a7526855d304f31d8aa282558c", + "version_timestamp": "2025-06-11T19:41:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158748456, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158748454, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140731375, + "additional_page_count": 1, + "attached_at": "2025-06-11T19:32:21Z", + "attachment_id": 5486249075, + "content_type": "application/pdf", + "document_markup_layer_id": 64446750, + "filename": "08 41 13 - 2.0 - Exterior Storefronts (SD).pdf", + "markup_updated_at": "2025-06-11T19:41:12Z", + "state": "outdated", + "updated_at": "2025-06-11T19:32:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXG7N206WN4PC3GJ2HFHG7DY?companyId=8089&projectId=2563870&sig=a4e023d909a52a581513e2f8493f1880a9ea17a7526855d304f31d8aa282558c", + "version_timestamp": "2025-06-11T19:32:21Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:19:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-27T21:40:44Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-20", + "formatted_number": "084113-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27818108, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39092391, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5513029903, + "content_type": "application/pdf", + "filename": "08 41 13-2.0 - Exterior Storefronts-SD_FGMA.pdf", + "source_prostore_file_id": 5513029903, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH8TRYPSMPM0BXKPVDQGGE3?companyId=8089&projectId=2563870&sig=1e0699e2ac9b8d8d9072a6d82a9a6003652348a22298c45efa3a2a1c85d0f82c", + "viewable_document_id": 851514505 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 158748459, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-27T21:40:44Z" + }, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Storefronts (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-29T14:31:30Z" + }, + { + "id": 60123901, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159761406, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141780619, + "additional_page_count": 0, + "attached_at": "2025-07-02T16:30:28Z", + "attachment_id": 5531789782, + "content_type": "application/pdf", + "document_markup_layer_id": 65445169, + "filename": "08 41 13-3.0 - Interior Storefronts-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-02T16:30:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ5ZG0QW69KEB0EA5P6E30SC?companyId=8089&projectId=2563870&sig=9f5c482d4222b95f96c6d540f3cf815a30fbd26dd38a327f38cdaaea0dfc7258", + "version_timestamp": "2025-07-02T16:30:28Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-06-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 159761404, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141588953, + "additional_page_count": 0, + "attached_at": "2025-06-27T20:53:39Z", + "attachment_id": 5523203830, + "content_type": "application/pdf", + "document_markup_layer_id": 65154590, + "filename": "084113 - 3.0 - Interior Storefton (SD) - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-27T20:53:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYSJN63ZJTF2FHXCF74Y6F99?companyId=8089&projectId=2563870&sig=5501639225bbd9989acc3e4eca68f2471931b5b2fb0e43aa944a9586f72a43ce", + "version_timestamp": "2025-06-27T20:53:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-27", + "sent_date": "2025-06-24", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159761405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159761402, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141338100, + "additional_page_count": 1, + "attached_at": "2025-06-24T14:06:12Z", + "attachment_id": 5512666183, + "content_type": "application/pdf", + "document_markup_layer_id": 64947651, + "filename": "084113 - 3.0 - Interior Storefton (SD).pdf", + "markup_updated_at": "2025-06-24T14:12:33Z", + "state": "excluded", + "updated_at": "2025-06-24T14:12:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH4535CT2F9AQC26DHMPQT8?companyId=8089&projectId=2563870&sig=fe5d02904e13679273dc5e2a07357d609dfd584adad4fee072d6a8871522a80a", + "version_timestamp": "2025-06-24T14:12:33Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159761403, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159761401, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141337538, + "additional_page_count": 1, + "attached_at": "2025-06-24T14:06:12Z", + "attachment_id": 5512666183, + "content_type": "application/pdf", + "document_markup_layer_id": 64947651, + "filename": "084113 - 3.0 - Interior Storefton (SD).pdf", + "markup_updated_at": "2025-06-24T14:12:33Z", + "state": "outdated", + "updated_at": "2025-06-24T14:06:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH4535CT2F9AQC26DHMPQT8?companyId=8089&projectId=2563870&sig=fe5d02904e13679273dc5e2a07357d609dfd584adad4fee072d6a8871522a80a", + "version_timestamp": "2025-06-24T14:06:12Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:19:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-03T19:15:01Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-07-04", + "formatted_number": "084113-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 27890311, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39198582, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5531789782, + "content_type": "application/pdf", + "filename": "08 41 13-3.0 - Interior Storefronts-SD_FGMA.pdf", + "source_prostore_file_id": 5531789782, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ5ZG0QW69KEB0EA5P6E30SC?companyId=8089&projectId=2563870&sig=9f5c482d4222b95f96c6d540f3cf815a30fbd26dd38a327f38cdaaea0dfc7258", + "viewable_document_id": 854814427 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 159761406, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-03T19:15:01Z" + }, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Storefronts (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-03T19:15:01Z" + }, + { + "id": 60123946, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159763417, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142227747, + "additional_page_count": 0, + "attached_at": "2025-07-11T17:41:25Z", + "attachment_id": 5551475119, + "content_type": "application/pdf", + "document_markup_layer_id": 65905903, + "filename": "08 41 13-4.0 - Aluminum Framed Entrances and Storefront Hardware-PD_LAF.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T17:41:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX9504AWXYTQ8C0RV5Y0KQC?companyId=8089&projectId=2563870&sig=c742f4b93996b8f24e0e95d23eeb2cc9f6e0135e8d32a8589939bc4f7850be81", + "version_timestamp": "2025-07-11T17:41:25Z" + } + ], + "comment": "See attached response from Architect with comments from door hardware consultant.", + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-06-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 5, + "workflow_group_number": 3 + }, + { + "id": 159763414, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141589011, + "additional_page_count": 0, + "attached_at": "2025-06-27T20:54:24Z", + "attachment_id": 5523205801, + "content_type": "application/pdf", + "document_markup_layer_id": 65154647, + "filename": "084113 - 4.0 - Hardware (PD) - (EE-NR).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-27T20:54:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYSJPDP52VQQX2KKRPF4WB1V?companyId=8089&projectId=2563870&sig=af3d3d86735c0502c8ba95700b593ab6c628443efb3addd737affcf22b991697", + "version_timestamp": "2025-06-27T20:54:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-27", + "sent_date": "2025-06-24", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159763416, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159763412, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141338866, + "additional_page_count": 1, + "attached_at": "2025-06-24T14:17:43Z", + "attachment_id": 5512713873, + "content_type": "application/pdf", + "document_markup_layer_id": 64948555, + "filename": "084113 - 4.0 - Hardware (PD).pdf", + "markup_updated_at": "2025-06-24T14:21:13Z", + "state": "excluded", + "updated_at": "2025-06-24T14:21:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH4T9185NP0Q6ET9DTV9EZX?companyId=8089&projectId=2563870&sig=ba9f80bae881deaf5870b4e0c2c40af505ba4f3412bdc1c55174a31646cc778d", + "version_timestamp": "2025-06-24T14:21:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159763413, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159763411, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141338580, + "additional_page_count": 1, + "attached_at": "2025-06-24T14:17:43Z", + "attachment_id": 5512713873, + "content_type": "application/pdf", + "document_markup_layer_id": 64948555, + "filename": "084113 - 4.0 - Hardware (PD).pdf", + "markup_updated_at": "2025-06-24T14:21:13Z", + "state": "outdated", + "updated_at": "2025-06-24T14:17:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH4T9185NP0Q6ET9DTV9EZX?companyId=8089&projectId=2563870&sig=ba9f80bae881deaf5870b4e0c2c40af505ba4f3412bdc1c55174a31646cc778d", + "version_timestamp": "2025-06-24T14:17:43Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:20:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-23T14:21:52Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-07-04", + "formatted_number": "084113-4", + "issue_date": null, + "last_distributed_submittal": { + "id": 28127337, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549529, + "comment": "See attached response from Architect with comments from door hardware consultant.
", + "distributed_attachments": [ + { + "id": 5551475119, + "content_type": "application/pdf", + "filename": "08 41 13-4.0 - Aluminum Framed Entrances and Storefront Hardware-PD_LAF.pdf", + "source_prostore_file_id": 5551475119, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX9504AWXYTQ8C0RV5Y0KQC?companyId=8089&projectId=2563870&sig=c742f4b93996b8f24e0e95d23eeb2cc9f6e0135e8d32a8589939bc4f7850be81", + "viewable_document_id": 858048157 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 159763417, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-23T14:21:52Z" + }, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Aluminum Framed Entrances and Storefront Hardware (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-23T14:21:52Z" + }, + { + "id": 60123965, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:21:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "084113-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Aluminum-framed Entrances and Storefronts (Delegated Design)", + "type": { + "id": -1, + "name": "Other", + "translated_name": "Other" + }, + "updated_at": "2025-03-06T12:30:28Z" + }, + { + "id": 60123992, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:21:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "084113-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Aluminum-framed Entrances and Storefronts (Sustainable Design)", + "type": { + "id": -1, + "name": "Other", + "translated_name": "Other" + }, + "updated_at": "2025-03-06T12:30:29Z" + }, + { + "id": 60124051, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T21:23:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "084113-7", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Aluminum-framed Entrances and Storefronts (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:30Z" + }, + { + "id": 60125905, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162540979, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143017383, + "additional_page_count": 0, + "attached_at": "2025-07-28T18:48:08Z", + "attachment_id": 5586239461, + "content_type": "application/pdf", + "document_markup_layer_id": 66348488, + "filename": "08 71 00-1.0 Door Hardware-PD_LAF_FGMA rev.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-28T18:48:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K195RSWJZFKDSPY88DHJ95J3?companyId=8089&projectId=2563870&sig=4ccdca36994e7141ae6cd895a00d62dd7872588d84c39eb3dad578def23ad34f", + "version_timestamp": "2025-07-28T18:48:08Z" + } + ], + "comment": "See attached revised response from Architect and Door Hardware Consultant.", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 162540980, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10898691, + "name": "Wes Rodberry" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155475936, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142326233, + "additional_page_count": 0, + "attached_at": "2025-07-14T21:30:36Z", + "attachment_id": 5555847898, + "content_type": "application/pdf", + "document_markup_layer_id": 65780374, + "filename": "08 71 00-1.0 Door Hardware-PD_LAF.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-14T21:30:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05DFGMSB5PDQSX1X68BMYZS?companyId=8089&projectId=2563870&sig=1ed426bfecbdd4d9753fed8d8c56da68e64172709a0d2ae685d04532dedd2dcc", + "version_timestamp": "2025-07-14T21:30:36Z" + } + ], + "comment": "See attached response from door hardware consultant.", + "days_to_respond": 10, + "due_date": "2025-07-16", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 155475937, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475934, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141778640, + "additional_page_count": 1, + "attached_at": "2025-07-02T16:00:10Z", + "attachment_id": 5531671806, + "content_type": "application/pdf", + "document_markup_layer_id": 65307928, + "filename": "08 71 00 - 1.0 - Door Hardware.pdf", + "markup_updated_at": "2025-07-02T16:09:12Z", + "state": "excluded", + "updated_at": "2025-07-02T16:09:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ5XVFS4PC5RRTFE4X8CVQ7M?companyId=8089&projectId=2563870&sig=2e3854bb1eebefa2422012815a25de3c252eaacb0e41d5da31c2dfa26d29a666", + "version_timestamp": "2025-07-02T16:09:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155475935, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475933, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141777843, + "additional_page_count": 1, + "attached_at": "2025-07-02T16:00:10Z", + "attachment_id": 5531671806, + "content_type": "application/pdf", + "document_markup_layer_id": 65307928, + "filename": "08 71 00 - 1.0 - Door Hardware.pdf", + "markup_updated_at": "2025-07-02T16:09:12Z", + "state": "outdated", + "updated_at": "2025-07-02T16:00:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ5XVFS4PC5RRTFE4X8CVQ7M?companyId=8089&projectId=2563870&sig=2e3854bb1eebefa2422012815a25de3c252eaacb0e41d5da31c2dfa26d29a666", + "version_timestamp": "2025-07-02T16:00:10Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-07-02", + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:03:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-28T21:05:41Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-04", + "formatted_number": "087100-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28188511, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39639328, + "comment": "See attached revised response from Architect and Door Hardware Consultant.
", + "distributed_attachments": [ + { + "id": 5586239461, + "content_type": "application/pdf", + "filename": "08 71 00-1.0 Door Hardware-PD_LAF_FGMA rev.pdf", + "source_prostore_file_id": 5586239461, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K195RSWJZFKDSPY88DHJ95J3?companyId=8089&projectId=2563870&sig=4ccdca36994e7141ae6cd895a00d62dd7872588d84c39eb3dad578def23ad34f", + "viewable_document_id": 864200509 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 162540979, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4393078, + "initials": "SM", + "name": "Sasha Meacham", + "vendor_name": "LaForce, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10898691, + "initials": "WR", + "name": "Wes Rodberry", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-28T21:05:41Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037702, + "current_revision_id": 45441106, + "description": "DOOR HARDWARE", + "label": "087100 - DOOR HARDWARE", + "number": "087100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331238 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-22", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Door Hardware (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-28T21:05:41Z" + }, + { + "id": 60125917, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475974, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475973, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475972, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475971, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475970, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:04:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 30, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037702, + "current_revision_id": 45441106, + "description": "DOOR HARDWARE", + "label": "087100 - DOOR HARDWARE", + "number": "087100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331238 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-18", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Door Hardware (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-05T13:15:00Z" + }, + { + "id": 60125945, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475944, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475943, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475942, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475941, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475940, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:05:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100b-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096761, + "current_revision_id": 45441107, + "description": "DOOR HARDWARE SETS", + "label": "087100b - DOOR HARDWARE SETS", + "number": "087100b", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331242 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-04-22", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C: Door Hardware (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:14:59Z" + }, + { + "id": 60125985, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:06:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "087100-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037702, + "current_revision_id": 45441106, + "description": "DOOR HARDWARE", + "label": "087100 - DOOR HARDWARE", + "number": "087100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331238 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Door Hardware (Manual)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:32Z" + }, + { + "id": 60126163, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:13:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "088723-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039534, + "current_revision_id": 44089111, + "description": "Safety and Security Films", + "label": "088723 - Safety and Security Films", + "number": "088723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035679 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Safety and Security Film (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:34Z" + }, + { + "id": 60126178, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:14:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "088723-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039534, + "current_revision_id": 44089111, + "description": "Safety and Security Films", + "label": "088723 - Safety and Security Films", + "number": "088723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035679 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Safety and Security Film (Samples))", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:34Z" + }, + { + "id": 60126187, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:14:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "088723-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039534, + "current_revision_id": 44089111, + "description": "Safety and Security Films", + "label": "088723 - Safety and Security Films", + "number": "088723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035679 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Safety and Security Film (Qualification Data)", + "type": { + "id": -1, + "name": "Other", + "translated_name": "Other" + }, + "updated_at": "2025-03-06T12:30:35Z" + }, + { + "id": 60126214, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:15:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "088723-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039534, + "current_revision_id": 44089111, + "description": "Safety and Security Films", + "label": "088723 - Safety and Security Films", + "number": "088723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035679 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Safety and Security Film (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:35Z" + }, + { + "id": 60126222, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:16:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "088723-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039534, + "current_revision_id": 44089111, + "description": "Safety and Security Films", + "label": "088723 - Safety and Security Films", + "number": "088723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035679 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780447, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.B", + "specification_section_id": null, + "submittal_ids": [ + 60126222, + 60122321, + 60122284, + 60121470, + 60124051, + 60126214, + 60121750, + 60122226, + 60125985, + 60121198 + ], + "title": "Division 008 Closeout", + "updated_at": "2025-01-09T22:22:48Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Safety and Security Film (Manual)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:36Z" + }, + { + "id": 60126277, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:17:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "087113-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037706, + "current_revision_id": 45441110, + "description": "POWER DOOR OPERATORS", + "label": "087113 - POWER DOOR OPERATORS", + "number": "087113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331249 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Power Door Operators (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:36Z" + }, + { + "id": 60126294, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:17:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "087113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037706, + "current_revision_id": 45441110, + "description": "POWER DOOR OPERATORS", + "label": "087113 - POWER DOOR OPERATORS", + "number": "087113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331249 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Power Door Operators (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:37Z" + }, + { + "id": 60126321, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:18:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "087113-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-08", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037706, + "current_revision_id": 45441110, + "description": "POWER DOOR OPERATORS", + "label": "087113 - POWER DOOR OPERATORS", + "number": "087113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331249 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Power Door Operators (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:30:37Z" + }, + { + "id": 60126353, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164256990, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164256989, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164256988, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164256991, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164256987, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144094766, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:18:49Z", + "attachment_id": 5634236505, + "content_type": "application/pdf", + "document_markup_layer_id": 67279924, + "filename": "08 80 00 - 1.0 - Glazing solarban 67 (PD).pdf", + "markup_updated_at": "2025-08-19T14:21:14Z", + "state": "current", + "updated_at": "2025-08-19T14:21:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31B4K0DQDFZ3E85BVQAAVZ6?companyId=8089&projectId=2563870&sig=afcb030db6d5ffd08e76f2838b114f45597fa860d284ff9d282fbb25ae358110", + "version_timestamp": "2025-08-19T14:21:14Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164256986, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144094673, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:18:49Z", + "attachment_id": 5634236505, + "content_type": "application/pdf", + "document_markup_layer_id": 67279924, + "filename": "08 80 00 - 1.0 - Glazing solarban 67 (PD).pdf", + "markup_updated_at": "2025-08-19T14:21:14Z", + "state": "outdated", + "updated_at": "2025-08-19T14:18:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31B4K0DQDFZ3E85BVQAAVZ6?companyId=8089&projectId=2563870&sig=afcb030db6d5ffd08e76f2838b114f45597fa860d284ff9d282fbb25ae358110", + "version_timestamp": "2025-08-19T14:18:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 164256985, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1993997, + "name": "Kevin Keisling" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor": null + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor": { + "id": 19038750, + "name": "Austin ISD" + } + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-09T22:19:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-09-02", + "formatted_number": "088000-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-11", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-04-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glazing Solarban 67 (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-19T14:30:16Z" + }, + { + "id": 60126390, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163731987, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143904966, + "additional_page_count": 0, + "attached_at": "2025-08-14T16:25:47Z", + "attachment_id": 5625417072, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "08 80 00-3.0 - Glazing (Samples)_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-14T16:25:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2MPCAGSGMDWS4HNVJS3SGFX?companyId=8089&projectId=2563870&sig=f5b49eb1e3e855c1deb599a1fd4b8cc72a07abb23b2380b3c82ee9db5865d0e7", + "version_timestamp": "2025-08-14T16:25:47Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-14", + "sent_date": "2025-08-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 163731985, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143787908, + "additional_page_count": 1, + "attached_at": "2025-08-12T16:05:53Z", + "attachment_id": 5619345534, + "content_type": "application/pdf", + "document_markup_layer_id": 66986001, + "filename": "08 80 00 - 3.0 - Glazing Sample (S).pdf", + "markup_updated_at": "2025-08-12T19:57:08Z", + "state": "excluded", + "updated_at": "2025-08-12T19:57:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FGFP2ZGZS4XE2JJYSVFSN6?companyId=8089&projectId=2563870&sig=e4daa67e543662efb04cc48965b9af6287a96166e9c870981db8597d1962ce2c", + "version_timestamp": "2025-08-12T19:57:08Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-08-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 163731986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163731984, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143763503, + "additional_page_count": 1, + "attached_at": "2025-08-12T16:05:53Z", + "attachment_id": 5619345534, + "content_type": "application/pdf", + "document_markup_layer_id": 66986001, + "filename": "08 80 00 - 3.0 - Glazing Sample (S).pdf", + "markup_updated_at": "2025-08-12T19:57:08Z", + "state": "outdated", + "updated_at": "2025-08-12T16:05:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FGFP2ZGZS4XE2JJYSVFSN6?companyId=8089&projectId=2563870&sig=e4daa67e543662efb04cc48965b9af6287a96166e9c870981db8597d1962ce2c", + "version_timestamp": "2025-08-12T16:05:53Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:20:08Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-14T19:29:01Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-19", + "formatted_number": "088000-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 28420556, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39982712, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5625417072, + "content_type": "application/pdf", + "filename": "08 80 00-3.0 - Glazing (Samples)_FGMA.pdf", + "source_prostore_file_id": 5625417072, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2MPCAGSGMDWS4HNVJS3SGFX?companyId=8089&projectId=2563870&sig=f5b49eb1e3e855c1deb599a1fd4b8cc72a07abb23b2380b3c82ee9db5865d0e7", + "viewable_document_id": 870936863 + } + ], + "response_name": "Approved", + "submittal_approver_id": 163731987, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-14T19:29:01Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-11", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glazing (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-14T19:29:01Z" + }, + { + "id": 60126404, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164259032, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259031, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259030, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259033, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164259029, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144096268, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:32:15Z", + "attachment_id": 5634289687, + "content_type": "application/pdf", + "document_markup_layer_id": 67281602, + "filename": "08 80 00 -4.0 - Kalwall (PD).pdf", + "markup_updated_at": "2025-08-19T14:35:05Z", + "state": "current", + "updated_at": "2025-08-19T14:35:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31BWYY9EB0MW9W1X616FSCG?companyId=8089&projectId=2563870&sig=bb022e338509594df9c63e128f9ab976480a3b4dcf7b0331a971b627301a9e73", + "version_timestamp": "2025-08-19T14:35:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164259028, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144096008, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:32:15Z", + "attachment_id": 5634289687, + "content_type": "application/pdf", + "document_markup_layer_id": 67281602, + "filename": "08 80 00 -4.0 - Kalwall (PD).pdf", + "markup_updated_at": "2025-08-19T14:35:05Z", + "state": "outdated", + "updated_at": "2025-08-19T14:32:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31BWYY9EB0MW9W1X616FSCG?companyId=8089&projectId=2563870&sig=bb022e338509594df9c63e128f9ab976480a3b4dcf7b0331a971b627301a9e73", + "version_timestamp": "2025-08-19T14:32:15Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 164259027, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1993997, + "name": "Kevin Keisling" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor": null + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor": { + "id": 19038750, + "name": "Austin ISD" + } + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-09T22:20:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-09-02", + "formatted_number": "088000-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "required_on_site_date": "2025-07-11", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-04-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glazing Kalwall (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-19T14:35:57Z" + }, + { + "id": 60126428, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164259836, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259835, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259834, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164259837, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164259833, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144097046, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:39:59Z", + "attachment_id": 5634315475, + "content_type": "application/pdf", + "document_markup_layer_id": 67282462, + "filename": "08 80 00 - 5.0 - Kalwall (SD).pdf", + "markup_updated_at": "2025-08-19T14:42:34Z", + "state": "current", + "updated_at": "2025-08-19T14:42:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31C98W5XMKEK692822DWRR9?companyId=8089&projectId=2563870&sig=4cb82b41a9c66812ff245aa48d031c97f86da5a4f394e02154aa61177cb6c09e", + "version_timestamp": "2025-08-19T14:42:34Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164259832, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144096808, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:39:59Z", + "attachment_id": 5634315475, + "content_type": "application/pdf", + "document_markup_layer_id": 67282462, + "filename": "08 80 00 - 5.0 - Kalwall (SD).pdf", + "markup_updated_at": "2025-08-19T14:42:34Z", + "state": "outdated", + "updated_at": "2025-08-19T14:39:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31C98W5XMKEK692822DWRR9?companyId=8089&projectId=2563870&sig=4cb82b41a9c66812ff245aa48d031c97f86da5a4f394e02154aa61177cb6c09e", + "version_timestamp": "2025-08-19T14:39:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 164259831, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1993997, + "name": "Kevin Keisling" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor": null + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor": { + "id": 19038750, + "name": "Austin ISD" + } + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-09T22:21:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-09-02", + "formatted_number": "088000-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "required_on_site_date": "2025-07-11", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-04-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glazing : Kallwall (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-19T15:32:31Z" + }, + { + "id": 60126473, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158714830, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141076481, + "additional_page_count": 0, + "attached_at": "2025-06-18T16:56:55Z", + "attachment_id": 5500824248, + "content_type": "application/pdf", + "document_markup_layer_id": 65461532, + "filename": "08 80 00-6.0 - Glazing Shop Drawing (Mock Up)_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-18T16:56:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY1ZGNHGE8EVJENJ7R22TTGX?companyId=8089&projectId=2563870&sig=eeb48960ace823efc47e33ba784eaa4b212d9ad18b076e1b7fd8693cdb26cad0", + "version_timestamp": "2025-06-18T16:56:55Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-18", + "sent_date": "2025-06-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 158714828, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140731333, + "additional_page_count": 0, + "attached_at": "2025-06-11T19:31:54Z", + "attachment_id": 5486242269, + "content_type": "application/pdf", + "document_markup_layer_id": 64446751, + "filename": "08 80 00 - 6.0 - Glazing Mock Up (SD) - (EE-R&R).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-11T19:31:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXG7HWF5SXSE1VDH5FY11M92?companyId=8089&projectId=2563870&sig=5f0baaba0cdce700333e4f34655c861adf1d4d3c620f9109c5b24d649e3b634a", + "version_timestamp": "2025-06-11T19:31:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-11", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 158714829, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158714826, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140711450, + "additional_page_count": 1, + "attached_at": "2025-06-11T16:19:22Z", + "attachment_id": 5485470769, + "content_type": "application/pdf", + "document_markup_layer_id": 64430278, + "filename": "08 80 00 - 6.0 - Glazing Mock Up (SD).pdf", + "markup_updated_at": "2025-06-11T16:20:28Z", + "state": "excluded", + "updated_at": "2025-06-11T16:20:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFWKQW9G3XBTMRKJKD5MG44?companyId=8089&projectId=2563870&sig=eb9b7b695b4378d74b8a7497767e4b0fa8094006058587ca64fe50a91ea59a20", + "version_timestamp": "2025-06-11T16:20:28Z" + } + ], + "comment": "Please confirm mock up sizes for metal and glass", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158714827, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158714825, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140711374, + "additional_page_count": 1, + "attached_at": "2025-06-11T16:19:22Z", + "attachment_id": 5485470769, + "content_type": "application/pdf", + "document_markup_layer_id": 64430278, + "filename": "08 80 00 - 6.0 - Glazing Mock Up (SD).pdf", + "markup_updated_at": "2025-06-11T16:20:28Z", + "state": "outdated", + "updated_at": "2025-06-11T16:19:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFWKQW9G3XBTMRKJKD5MG44?companyId=8089&projectId=2563870&sig=eb9b7b695b4378d74b8a7497767e4b0fa8094006058587ca64fe50a91ea59a20", + "version_timestamp": "2025-06-11T16:19:22Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-09T22:22:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-23T17:12:53Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-06-18", + "formatted_number": "088000-6", + "issue_date": null, + "last_distributed_submittal": { + "id": 27738229, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38974505, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5500824248, + "content_type": "application/pdf", + "filename": "08 80 00-6.0 - Glazing Shop Drawing (Mock Up)_FGMA.pdf", + "source_prostore_file_id": 5500824248, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY1ZGNHGE8EVJENJ7R22TTGX?companyId=8089&projectId=2563870&sig=eeb48960ace823efc47e33ba784eaa4b212d9ad18b076e1b7fd8693cdb26cad0", + "viewable_document_id": 849277682 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158714830, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11730072, + "initials": "TR", + "name": "Taylor Rowe", + "vendor_name": "Floyd's Glass Co." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-23T17:12:53Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glazing Shop Drawing (Mock Up)", + "type": { + "id": 8918, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-06-23T17:12:53Z" + }, + { + "id": 60133786, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:45:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "075216-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038291, + "current_revision_id": 44087309, + "description": "STYRENE-BUTADIENE-STYRENE (SBS) MODIFIED BITUMINOUS MEMBRANE", + "label": "075216 - STYRENE-BUTADIENE-STYRENE (SBS) MODIFIED BITUMINOUS MEMBRANE", + "number": "075216", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777010843 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "SBS Modified Bituminous Membrane Roofing (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:40Z" + }, + { + "id": 60133893, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:47:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "075250-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038910, + "current_revision_id": 45441089, + "description": "MODIFIED BIT SHEET ROOFING", + "label": "075250 - MODIFIED BIT SHEET ROOFING", + "number": "075250", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331164 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Modified Bit Sheet Roofing (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:41Z" + }, + { + "id": 60133907, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:48:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "075250-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038910, + "current_revision_id": 45441089, + "description": "MODIFIED BIT SHEET ROOFING", + "label": "075250 - MODIFIED BIT SHEET ROOFING", + "number": "075250", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331164 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Modified Bit Sheet Roofing (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:41Z" + }, + { + "id": 60133929, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:48:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "075250-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038910, + "current_revision_id": 45441089, + "description": "MODIFIED BIT SHEET ROOFING", + "label": "075250 - MODIFIED BIT SHEET ROOFING", + "number": "075250", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331164 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Modified Bit Sheet Roofing (As-builts)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-06T12:30:42Z" + }, + { + "id": 60133978, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549167, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549165, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143455667, + "additional_page_count": 0, + "attached_at": "2025-08-06T03:22:42Z", + "attachment_id": 5605762149, + "content_type": "application/pdf", + "document_markup_layer_id": 66794881, + "filename": "07 52 50-4.0 - Modified Bit Sheet Roofing-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-06T03:22:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YPCNXW1QDV4JSWDZ4RWB5C?companyId=8089&projectId=2563870&sig=0d9f58285e7f0585eafbcafa529b72dc270fd7acef7f2a65d83df02a6802790d", + "version_timestamp": "2025-08-06T03:22:42Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 162549166, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549164, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549163, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143057861, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:12:03Z", + "attachment_id": 5587993377, + "content_type": "application/pdf", + "document_markup_layer_id": 66368522, + "filename": "07 52 50 - 4.0 - Modified Bit Sheet Roofing (PD).pdf", + "markup_updated_at": "2025-07-29T13:13:31Z", + "state": "excluded", + "updated_at": "2025-07-29T13:13:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B4YQHKPGCQG4QWW6VARR1S?companyId=8089&projectId=2563870&sig=7b9df614b4ad9ec78dfce85c0f4319249d721b393f0f3bfc8f2ef87380816c10", + "version_timestamp": "2025-07-29T13:13:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162549162, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143057764, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:12:03Z", + "attachment_id": 5587993377, + "content_type": "application/pdf", + "document_markup_layer_id": 66368522, + "filename": "07 52 50 - 4.0 - Modified Bit Sheet Roofing (PD).pdf", + "markup_updated_at": "2025-07-29T13:13:31Z", + "state": "outdated", + "updated_at": "2025-07-29T13:12:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B4YQHKPGCQG4QWW6VARR1S?companyId=8089&projectId=2563870&sig=7b9df614b4ad9ec78dfce85c0f4319249d721b393f0f3bfc8f2ef87380816c10", + "version_timestamp": "2025-07-29T13:12:03Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": -4, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:50:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-07T19:49:21Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "075250-4", + "issue_date": null, + "last_distributed_submittal": { + "id": 28330029, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39847698, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5605762149, + "content_type": "application/pdf", + "filename": "07 52 50-4.0 - Modified Bit Sheet Roofing-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5605762149, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YPCNXW1QDV4JSWDZ4RWB5C?companyId=8089&projectId=2563870&sig=0d9f58285e7f0585eafbcafa529b72dc270fd7acef7f2a65d83df02a6802790d", + "viewable_document_id": 867484286 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 162549165, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor_name": "F.W. Walton, Inc" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-07T19:49:21Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038910, + "current_revision_id": 45441089, + "description": "MODIFIED BIT SHEET ROOFING", + "label": "075250 - MODIFIED BIT SHEET ROOFING", + "number": "075250", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331164 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Modified Bit Sheet Roofing (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-07T19:49:21Z" + }, + { + "id": 60133996, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549161, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549159, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143455739, + "additional_page_count": 0, + "attached_at": "2025-08-06T03:30:25Z", + "attachment_id": 5605768084, + "content_type": "application/pdf", + "document_markup_layer_id": 66801459, + "filename": "07 52 50-5.0 - Modified Bit Sheet Roofing-SD - (EE-R&R).pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-06T03:30:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YPVJ3CCDP18W6YBCF0Z1GS?companyId=8089&projectId=2563870&sig=cb6efaa9f4c68d85fb27d4550f341f7442ce633f42613af14a5c3b10b370f563", + "version_timestamp": "2025-08-06T03:30:25Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 162549160, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549158, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549157, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143058330, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:16:50Z", + "attachment_id": 5588010952, + "content_type": "application/pdf", + "document_markup_layer_id": 66369019, + "filename": "07 52 50 - 5.0 - Modified Bit Sheet Roofing (SD).pdf", + "markup_updated_at": "2025-07-29T13:18:53Z", + "state": "excluded", + "updated_at": "2025-07-29T13:18:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B57X1RRDFTF7TR4SH97MZQ?companyId=8089&projectId=2563870&sig=144dae5901e3228437a7799cf4a7bd4b851a47da768819e2bb8d8901b0372d9b", + "version_timestamp": "2025-07-29T13:18:53Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162549156, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143058146, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:16:50Z", + "attachment_id": 5588010952, + "content_type": "application/pdf", + "document_markup_layer_id": 66369019, + "filename": "07 52 50 - 5.0 - Modified Bit Sheet Roofing (SD).pdf", + "markup_updated_at": "2025-07-29T13:18:53Z", + "state": "outdated", + "updated_at": "2025-07-29T13:16:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B57X1RRDFTF7TR4SH97MZQ?companyId=8089&projectId=2563870&sig=144dae5901e3228437a7799cf4a7bd4b851a47da768819e2bb8d8901b0372d9b", + "version_timestamp": "2025-07-29T13:16:50Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": -4, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:51:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-07T19:50:48Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "075250-5", + "issue_date": null, + "last_distributed_submittal": { + "id": 28330065, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39847745, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5605768084, + "content_type": "application/pdf", + "filename": "07 52 50-5.0 - Modified Bit Sheet Roofing-SD - (EE-R&R).pdf", + "source_prostore_file_id": 5605768084, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YPVJ3CCDP18W6YBCF0Z1GS?companyId=8089&projectId=2563870&sig=cb6efaa9f4c68d85fb27d4550f341f7442ce633f42613af14a5c3b10b370f563", + "viewable_document_id": 867485059 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 162549159, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor_name": "F.W. Walton, Inc" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-07T19:50:48Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038910, + "current_revision_id": 45441089, + "description": "MODIFIED BIT SHEET ROOFING", + "label": "075250 - MODIFIED BIT SHEET ROOFING", + "number": "075250", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331164 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Modified Bit Sheet Roofing (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-07T19:50:48Z" + }, + { + "id": 60134085, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:54:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-24", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-13", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Expansion Joint Cover Assemblies (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-20T13:08:02Z" + }, + { + "id": 60134111, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:55:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Expansion Joint Cover Assemblies (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-20T13:08:11Z" + }, + { + "id": 60134131, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:55:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Expansion Joint Cover Assemblies (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-20T13:08:15Z" + }, + { + "id": 60134143, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T13:56:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Expansion Joint Cover Assemblies (Schedule)", + "type": { + "id": -1, + "name": "Schedule", + "translated_name": "Schedule" + }, + "updated_at": "2025-05-20T13:08:19Z" + }, + { + "id": 60134340, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:03:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Expansion Joint Cover Assemblies (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:35:56Z" + }, + { + "id": 60134361, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:03:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-12-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Expansion Joint Cover Assemblies (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-24T15:36:58Z" + }, + { + "id": 60134373, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:04:17Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079513-7", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-12-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038917, + "current_revision_id": 44088245, + "description": "Expansion Joint Cover Assemblies", + "label": "079513 - Expansion Joint Cover Assemblies", + "number": "079513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023283 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Expansion Joint Cover Assemblies (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T15:38:03Z" + }, + { + "id": 60134434, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:06:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079200-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037685, + "current_revision_id": 44088244, + "description": "JOINT SEALANTS", + "label": "079200 - JOINT SEALANTS", + "number": "079200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023279 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:43:38Z" + }, + { + "id": 60134446, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:06:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "079200-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037685, + "current_revision_id": 44088244, + "description": "JOINT SEALANTS", + "label": "079200 - JOINT SEALANTS", + "number": "079200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023279 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T15:44:01Z" + }, + { + "id": 60134617, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:11:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078443-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037683, + "current_revision_id": 45441094, + "description": "JOINT FIRESTOPPING", + "label": "078443 - JOINT FIRESTOPPING", + "number": "078443", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331183 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Firestopping (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:44:53Z" + }, + { + "id": 60134721, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:15:08Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078443-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037683, + "current_revision_id": 45441094, + "description": "JOINT FIRESTOPPING", + "label": "078443 - JOINT FIRESTOPPING", + "number": "078443", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331183 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Firestopping (Unlisted Firestopping Systems)", + "type": { + "id": -1, + "name": "Other", + "translated_name": "Other" + }, + "updated_at": "2025-03-24T15:45:11Z" + }, + { + "id": 60135150, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:28:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078443-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037683, + "current_revision_id": 45441094, + "description": "JOINT FIRESTOPPING", + "label": "078443 - JOINT FIRESTOPPING", + "number": "078443", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331183 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Firestopping (Certificates)", + "type": { + "id": -1, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-06T12:30:50Z" + }, + { + "id": 60135197, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:29:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078413-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037682, + "current_revision_id": 45441093, + "description": "PENETRATION FIRESTOPPING", + "label": "078413 - PENETRATION FIRESTOPPING", + "number": "078413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Penetration Firestopping (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-20T13:08:56Z" + }, + { + "id": 60135219, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:29:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078413-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-04", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037682, + "current_revision_id": 45441093, + "description": "PENETRATION FIRESTOPPING", + "label": "078413 - PENETRATION FIRESTOPPING", + "number": "078413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Penetration Firestopping (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-20T13:08:51Z" + }, + { + "id": 60135578, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:35:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "078413-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037682, + "current_revision_id": 45441093, + "description": "PENETRATION FIRESTOPPING", + "label": "078413 - PENETRATION FIRESTOPPING", + "number": "078413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Penetration Firestopping (Certificates)", + "type": { + "id": -1, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-06T12:30:52Z" + }, + { + "id": 60135671, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:38:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "077200-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037681, + "current_revision_id": 45441092, + "description": "ROOF ACCESSORIES", + "label": "077200 - ROOF ACCESSORIES", + "number": "077200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331173 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764208, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.B", + "specification_section_id": null, + "submittal_ids": [ + 60135671, + 60133786, + 60133907, + 60135150, + 60135578, + 60133929, + 60133893, + 59677723, + 59636455, + 59636595, + 59636960 + ], + "title": "Division 007 Closeout", + "updated_at": "2025-01-14T14:28:33Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roof Accessories (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:52Z" + }, + { + "id": 60135712, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549097, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549095, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "EE review complete and sent directly to AOR for their review.", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-07", + "sent_date": "2025-07-29", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 162549094, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549092, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549090, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143056325, + "additional_page_count": 1, + "attached_at": "2025-07-29T12:53:10Z", + "attachment_id": 5587926665, + "content_type": "application/pdf", + "document_markup_layer_id": 66367126, + "filename": "07 72 00 - 2.0 - Roof Hatches.pdf", + "markup_updated_at": "2025-07-29T12:56:09Z", + "state": "excluded", + "updated_at": "2025-07-29T12:56:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B3WJMNFF5M063EQER5QCYR?companyId=8089&projectId=2563870&sig=b75178206b5ae5e03e05528ce67a2ad766aa86bc2f30e15781031a6188f91f70", + "version_timestamp": "2025-07-29T12:56:09Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162549088, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143056256, + "additional_page_count": 1, + "attached_at": "2025-07-29T12:53:10Z", + "attachment_id": 5587926665, + "content_type": "application/pdf", + "document_markup_layer_id": 66367126, + "filename": "07 72 00 - 2.0 - Roof Hatches.pdf", + "markup_updated_at": "2025-07-29T12:56:09Z", + "state": "outdated", + "updated_at": "2025-07-29T12:53:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B3WJMNFF5M063EQER5QCYR?companyId=8089&projectId=2563870&sig=b75178206b5ae5e03e05528ce67a2ad766aa86bc2f30e15781031a6188f91f70", + "version_timestamp": "2025-07-29T12:53:10Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": -4, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-10T14:39:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-07T19:53:46Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-14", + "formatted_number": "077200-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 28330137, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39847842, + "comment": "EE review complete and sent directly to AOR for their review.
", + "distributed_attachments": [], + "response_name": "Approved as Noted", + "submittal_approver_id": 162549095, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + "user_id": 4112315 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor_name": "F.W. Walton, Inc" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-07T19:53:46Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037681, + "current_revision_id": 45441092, + "description": "ROOF ACCESSORIES", + "label": "077200 - ROOF ACCESSORIES", + "number": "077200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331173 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roof Hatches (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-14T16:54:36Z" + }, + { + "id": 60135731, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549074, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549072, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549070, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549068, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162549065, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:40:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "077200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-06-23", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037681, + "current_revision_id": 45441092, + "description": "ROOF ACCESSORIES", + "label": "077200 - ROOF ACCESSORIES", + "number": "077200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331173 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roof Accessories (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-29T12:57:32Z" + }, + { + "id": 60136030, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549133, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549132, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549130, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549128, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549124, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162549123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:46:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "077129-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-10-02", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038916, + "current_revision_id": 45441091, + "description": "MANUFACTURED ROOF EXPANSION JOINTS", + "label": "077129 - MANUFACTURED ROOF EXPANSION JOINTS", + "number": "077129", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331170 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manufactured Roof Expansion Joints (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-07T19:51:59Z" + }, + { + "id": 60136048, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549116, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549115, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549114, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549113, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549112, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162549111, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:47:08Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "077129-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-10-02", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038916, + "current_revision_id": 45441091, + "description": "MANUFACTURED ROOF EXPANSION JOINTS", + "label": "077129 - MANUFACTURED ROOF EXPANSION JOINTS", + "number": "077129", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331170 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manufactured Roof Expansion Joints (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-07T19:52:06Z" + }, + { + "id": 60136074, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549109, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549108, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549107, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549106, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549105, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162549104, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:47:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "077129-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2025-10-02", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038916, + "current_revision_id": 45441091, + "description": "MANUFACTURED ROOF EXPANSION JOINTS", + "label": "077129 - MANUFACTURED ROOF EXPANSION JOINTS", + "number": "077129", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331170 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manufactured Roof Expansion Joints (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-07T19:51:50Z" + }, + { + "id": 60136277, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162608808, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162608806, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143456316, + "additional_page_count": 0, + "attached_at": "2025-08-06T04:25:13Z", + "attachment_id": 5605800198, + "content_type": "application/pdf", + "document_markup_layer_id": 66801397, + "filename": "07 62 00-1.0 - Sheet Metal Flashing and Trim-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-06T04:25:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YSZAYWA026AV1FGXPE8HM3?companyId=8089&projectId=2563870&sig=b095d0123f8c1337eedeb538416d1b7156209bcb6e0e739047ea94df24410ff9", + "version_timestamp": "2025-08-06T04:25:13Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 162608807, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162608805, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162608804, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143059146, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:25:57Z", + "attachment_id": 5588039568, + "content_type": "application/pdf", + "document_markup_layer_id": 66369880, + "filename": "07 62 00 -1.0 - Sheet Metal Flashing and Trim (PD).pdf", + "markup_updated_at": "2025-07-29T13:28:57Z", + "state": "excluded", + "updated_at": "2025-07-29T13:28:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B5P41PJ3HD9Q7DJGTVA1Z4?companyId=8089&projectId=2563870&sig=9f4342cffc5f0ef115a1313032532e93be059f2f0dad406a1efd5ad7ca745282", + "version_timestamp": "2025-07-29T13:28:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162608803, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143058892, + "additional_page_count": 1, + "attached_at": "2025-07-29T13:25:57Z", + "attachment_id": 5588039568, + "content_type": "application/pdf", + "document_markup_layer_id": 66369880, + "filename": "07 62 00 -1.0 - Sheet Metal Flashing and Trim (PD).pdf", + "markup_updated_at": "2025-07-29T13:28:57Z", + "state": "outdated", + "updated_at": "2025-07-29T13:25:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1B5P41PJ3HD9Q7DJGTVA1Z4?companyId=8089&projectId=2563870&sig=9f4342cffc5f0ef115a1313032532e93be059f2f0dad406a1efd5ad7ca745282", + "version_timestamp": "2025-07-29T13:25:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:53:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-07T19:32:36Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "076200-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28329615, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39847135, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5605800198, + "content_type": "application/pdf", + "filename": "07 62 00-1.0 - Sheet Metal Flashing and Trim-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5605800198, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YSZAYWA026AV1FGXPE8HM3?companyId=8089&projectId=2563870&sig=b095d0123f8c1337eedeb538416d1b7156209bcb6e0e739047ea94df24410ff9", + "viewable_document_id": 867490079 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 162608806, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor_name": "F.W. Walton, Inc" + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-07T19:32:36Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037680, + "current_revision_id": 45441090, + "description": "SHEET METAL FLASHING AND TRIM", + "label": "076200 - SHEET METAL FLASHING AND TRIM", + "number": "076200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331167 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheet Metal Flashing and Trim (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-07T19:32:36Z" + }, + { + "id": 60136292, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162550779, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162550778, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550776, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550775, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162550774, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-10T14:54:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "076200-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037680, + "current_revision_id": 45441090, + "description": "SHEET METAL FLASHING AND TRIM", + "label": "076200 - SHEET METAL FLASHING AND TRIM", + "number": "076200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331167 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheet Metal Flashing and Trim (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-28T19:02:17Z" + }, + { + "id": 60136309, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162550310, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162550309, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550308, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550307, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162550306, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162550304, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 11110613, + "initials": "LE", + "name": "Leo Emond", + "vendor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-10T14:54:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "076200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037680, + "current_revision_id": 45441090, + "description": "SHEET METAL FLASHING AND TRIM", + "label": "076200 - SHEET METAL FLASHING AND TRIM", + "number": "076200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331167 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheet Metal Flashing and Trim (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-07-28T19:02:17Z" + }, + { + "id": 60136402, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162549152, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162549150, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549148, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549147, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162549145, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162549143, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11110613, + "name": "Leo Emond" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T14:56:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-25", + "formatted_number": "076200-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11110613, + "name": "Leo Emond" + }, + "required_on_site_date": "2026-04-01", + "responsible_contractor": { + "id": 21614296, + "name": "F.W. Walton, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037680, + "current_revision_id": 45441090, + "description": "SHEET METAL FLASHING AND TRIM", + "label": "076200 - SHEET METAL FLASHING AND TRIM", + "number": "076200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331167 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-04", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2964518, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.C", + "specification_section_id": null, + "submittal_ids": [ + 60135712, + 60136048, + 60136030, + 60136074, + 60133996, + 60133978, + 60136277, + 60136402, + 60136309, + 60135731, + 60136292 + ], + "title": "FW Walton Action Submittals", + "updated_at": "2025-07-28T18:50:05Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheet Metal Flashing and Trim (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-08-04T16:10:51Z" + }, + { + "id": 60138809, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T15:53:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096516-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038292, + "current_revision_id": 44089112, + "description": "Resilient Sheet Flooring", + "label": "096516 - Resilient Sheet Flooring", + "number": "096516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035681 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rubber Sheet Flooring (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:53Z" + }, + { + "id": 60138843, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T15:54:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096516-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038292, + "current_revision_id": 44089112, + "description": "Resilient Sheet Flooring", + "label": "096516 - Resilient Sheet Flooring", + "number": "096516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035681 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rubber Sheet Flooring (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:54Z" + }, + { + "id": 60138856, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T15:54:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096516-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038292, + "current_revision_id": 44089112, + "description": "Resilient Sheet Flooring", + "label": "096516 - Resilient Sheet Flooring", + "number": "096516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035681 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rubber Sheet Flooring (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:30:54Z" + }, + { + "id": 60138885, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T15:56:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096516-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038292, + "current_revision_id": 44089112, + "description": "Resilient Sheet Flooring", + "label": "096516 - Resilient Sheet Flooring", + "number": "096516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035681 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rubber Sheet Flooring (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:30:55Z" + }, + { + "id": 60138911, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T15:56:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096516-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038292, + "current_revision_id": 44089112, + "description": "Resilient Sheet Flooring", + "label": "096516 - Resilient Sheet Flooring", + "number": "096516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035681 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rubber Sheet Flooring (Maintenance Data)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:30:55Z" + }, + { + "id": 60140660, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T16:37:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092400-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038921, + "current_revision_id": 45441116, + "description": "CEMENT PLASTERING", + "label": "092400 - CEMENT PLASTERING", + "number": "092400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331269 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cement Plastering (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:30:56Z" + }, + { + "id": 60140697, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T16:37:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092400-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038921, + "current_revision_id": 45441116, + "description": "CEMENT PLASTERING", + "label": "092400 - CEMENT PLASTERING", + "number": "092400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331269 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cement Plastering (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:30:56Z" + }, + { + "id": 60140737, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T16:38:30Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092400-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038921, + "current_revision_id": 45441116, + "description": "CEMENT PLASTERING", + "label": "092400 - CEMENT PLASTERING", + "number": "092400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331269 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cement Plastering (Mock-up)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-06T12:30:57Z" + }, + { + "id": 60142268, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157255227, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140432741, + "additional_page_count": 0, + "attached_at": "2025-06-05T18:30:14Z", + "attachment_id": 5473699905, + "content_type": "application/pdf", + "document_markup_layer_id": 64208940, + "filename": "09 29 00-1.0 - Gypsum Board-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-05T18:30:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0NPR4Q60EFDJQ08MEA0X47?companyId=8089&projectId=2563870&sig=ef99ddff8872240f59cf733c4a4bdef62e6b11e67fe79deea8d1d6e9961a55a2", + "version_timestamp": "2025-06-05T18:30:14Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-05", + "sent_date": "2025-05-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157255226, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139839764, + "additional_page_count": 0, + "attached_at": "2025-05-24T14:30:32Z", + "attachment_id": 5449019230, + "content_type": "application/pdf", + "document_markup_layer_id": 63702048, + "filename": "09 29 00 1.0 - Gypsum Board (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-24T14:30:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW1B76WNV8VNZ3BCJ78P97V5?companyId=8089&projectId=2563870&sig=195f1b04c35c7c8c4dcd5430f28274d35d72d3d071f465680aedf9d7e01f28ba", + "version_timestamp": "2025-05-24T14:30:32Z" + } + ], + "comment": "Please review and approve.", + "days_to_respond": 5, + "due_date": "2025-06-02", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-24", + "sent_date": "2025-05-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 157255225, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157255224, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139839673, + "additional_page_count": 1, + "attached_at": "2025-05-24T14:05:44Z", + "attachment_id": 5449010040, + "content_type": "application/pdf", + "document_markup_layer_id": 63701984, + "filename": "092900 - Gypsum Submittal.pdf", + "markup_updated_at": "2025-05-24T14:20:56Z", + "state": "excluded", + "updated_at": "2025-05-24T14:05:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW19T0MQZMV7KQB2ANEZJNA4?companyId=8089&projectId=2563870&sig=42aaf8645c8d433117963801090c02aa7d5f4d34de916bf9db4b62e763468227", + "version_timestamp": "2025-05-24T14:05:44Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -15, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:06:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-05T19:58:46Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "092900-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27521036, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38652947, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5473699905, + "content_type": "application/pdf", + "filename": "09 29 00-1.0 - Gypsum Board-PD_FGMA.pdf", + "source_prostore_file_id": 5473699905, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX0NPR4Q60EFDJQ08MEA0X47?companyId=8089&projectId=2563870&sig=ef99ddff8872240f59cf733c4a4bdef62e6b11e67fe79deea8d1d6e9961a55a2", + "viewable_document_id": 844629197 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157255227, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-05T19:58:46Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-08-29", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037719, + "current_revision_id": 45441117, + "description": "GYPSUM BOARD", + "label": "092900 - GYPSUM BOARD", + "number": "092900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331277 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-07-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gypsum Board (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-05T19:58:46Z" + }, + { + "id": 60142297, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:07:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "Show locations of control and expansion joints and connections to other materials/work. Reference section 1.2 B of spec.", + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092900-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-29", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037719, + "current_revision_id": 45441117, + "description": "GYPSUM BOARD", + "label": "092900 - GYPSUM BOARD", + "number": "092900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331277 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gypsum Board (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-24T15:11:49Z" + }, + { + "id": 60142361, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:08:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "Full size in 12\" long sample section.", + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092900-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-29", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037719, + "current_revision_id": 45441117, + "description": "GYPSUM BOARD", + "label": "092900 - GYPSUM BOARD", + "number": "092900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331277 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Trim Accessories (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T15:13:02Z" + }, + { + "id": 60142523, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:11:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092116-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-08-29", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037715, + "current_revision_id": 44088262, + "description": "Gypsum Board Assemblies", + "label": "092116 - Gypsum Board Assemblies", + "number": "092116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023377 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gypsum Board Shaft Wall Assemblies (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:21:31Z" + }, + { + "id": 60142747, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:16:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092100-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038920, + "current_revision_id": 45441113, + "description": "ACOUSTIC PLASTERING", + "label": "092100 - ACOUSTIC PLASTERING", + "number": "092100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331260 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustic Plastering (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:00Z" + }, + { + "id": 60142764, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:17:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "092100-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038920, + "current_revision_id": 45441113, + "description": "ACOUSTIC PLASTERING", + "label": "092100 - ACOUSTIC PLASTERING", + "number": "092100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331260 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustic Plastering (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:01Z" + }, + { + "id": 60142805, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:19:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096513-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037726, + "current_revision_id": 45441121, + "description": "RESILIENT BASE AND ACCESSORIES", + "label": "096513 - RESILIENT BASE AND ACCESSORIES", + "number": "096513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331294 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Base and Accessories (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:01Z" + }, + { + "id": 60142833, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:19:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096513-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037726, + "current_revision_id": 45441121, + "description": "RESILIENT BASE AND ACCESSORIES", + "label": "096513 - RESILIENT BASE AND ACCESSORIES", + "number": "096513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331294 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Base and Accessories (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:01Z" + }, + { + "id": 60142865, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:20:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096513-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037726, + "current_revision_id": 45441121, + "description": "RESILIENT BASE AND ACCESSORIES", + "label": "096513 - RESILIENT BASE AND ACCESSORIES", + "number": "096513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331294 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Base and Accessories (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:02Z" + }, + { + "id": 60142891, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:21:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096513-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037726, + "current_revision_id": 45441121, + "description": "RESILIENT BASE AND ACCESSORIES", + "label": "096513 - RESILIENT BASE AND ACCESSORIES", + "number": "096513", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331294 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Base and Accessories (Mock-up)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-06T12:31:02Z" + }, + { + "id": 60142983, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157528490, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140629854, + "additional_page_count": 0, + "attached_at": "2025-06-10T15:29:23Z", + "attachment_id": 5482176684, + "content_type": "application/pdf", + "document_markup_layer_id": 64421454, + "filename": "09 51 13-1.0 - Acoustical Panel Ceiling-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-10T15:29:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXD7B29RESV32MVVCXEAZ8T0?companyId=8089&projectId=2563870&sig=fc5dd57b01c7ddb01421bc468afbd4d40131952b0eb85832c606b36472b5a5f1", + "version_timestamp": "2025-06-10T15:29:23Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-12", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": "2025-05-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157528488, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140078946, + "additional_page_count": 1, + "attached_at": "2025-05-28T20:42:03Z", + "attachment_id": 5455892363, + "content_type": "application/pdf", + "document_markup_layer_id": 63907858, + "filename": "095113 - Acoustical Ceiling submittal.pdf", + "markup_updated_at": "2025-05-29T21:16:02Z", + "state": "excluded", + "updated_at": "2025-05-29T21:16:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWCA2F6JNFWT5X8GFTBHVBVP?companyId=8089&projectId=2563870&sig=871a246f22b344d1e6bff386973e17b1eb6d0fe7898d891743eb416fcdee3dfd", + "version_timestamp": "2025-05-29T21:16:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-29", + "sent_date": "2025-05-28", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 157528489, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-28", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157528487, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140000912, + "additional_page_count": 1, + "attached_at": "2025-05-28T20:42:03Z", + "attachment_id": 5455892363, + "content_type": "application/pdf", + "document_markup_layer_id": 63907858, + "filename": "095113 - Acoustical Ceiling submittal.pdf", + "markup_updated_at": "2025-05-29T21:16:02Z", + "state": "outdated", + "updated_at": "2025-05-28T20:42:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWCA2F6JNFWT5X8GFTBHVBVP?companyId=8089&projectId=2563870&sig=871a246f22b344d1e6bff386973e17b1eb6d0fe7898d891743eb416fcdee3dfd", + "version_timestamp": "2025-05-28T20:42:03Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -17, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:24:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-10T16:51:12Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-12", + "formatted_number": "095113-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27571633, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38728087, + "comment": null, + "distributed_attachments": [ + { + "id": 5482176684, + "content_type": "application/pdf", + "filename": "09 51 13-1.0 - Acoustical Panel Ceiling-PD_FGMA.pdf", + "source_prostore_file_id": 5482176684, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXD7B29RESV32MVVCXEAZ8T0?companyId=8089&projectId=2563870&sig=fc5dd57b01c7ddb01421bc468afbd4d40131952b0eb85832c606b36472b5a5f1", + "viewable_document_id": 846061895 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157528490, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-06-10T16:51:12Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037724, + "current_revision_id": 45441119, + "description": "ACOUSTICAL PANEL CEILINGS", + "label": "095113 - ACOUSTICAL PANEL CEILINGS", + "number": "095113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331286 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Panel Ceiling (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-10T16:51:12Z" + }, + { + "id": 60143020, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:25:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "095113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037724, + "current_revision_id": 45441119, + "description": "ACOUSTICAL PANEL CEILINGS", + "label": "095113 - ACOUSTICAL PANEL CEILINGS", + "number": "095113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331286 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Panel Ceiling (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T15:06:11Z" + }, + { + "id": 60143085, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:27:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "095113-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037724, + "current_revision_id": 45441119, + "description": "ACOUSTICAL PANEL CEILINGS", + "label": "095113 - ACOUSTICAL PANEL CEILINGS", + "number": "095113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331286 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Panel Ceiling (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:03Z" + }, + { + "id": 60143114, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:27:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "095113-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037724, + "current_revision_id": 45441119, + "description": "ACOUSTICAL PANEL CEILINGS", + "label": "095113 - ACOUSTICAL PANEL CEILINGS", + "number": "095113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331286 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Panel Ceiling (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:04Z" + }, + { + "id": 60143186, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:30:00Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "093013-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037721, + "current_revision_id": 45441118, + "description": "CERAMIC TILING", + "label": "093013 - CERAMIC TILING", + "number": "093013", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331281 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ceramic Tiling (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:04Z" + }, + { + "id": 60143207, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:30:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "093013-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037721, + "current_revision_id": 45441118, + "description": "CERAMIC TILING", + "label": "093013 - CERAMIC TILING", + "number": "093013", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331281 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ceramic Tiling (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:31:04Z" + }, + { + "id": 60143232, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:30:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "093013-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037721, + "current_revision_id": 45441118, + "description": "CERAMIC TILING", + "label": "093013 - CERAMIC TILING", + "number": "093013", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331281 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ceramic Tiling (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:05Z" + }, + { + "id": 60143246, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T17:31:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "093013-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037721, + "current_revision_id": 45441118, + "description": "CERAMIC TILING", + "label": "093013 - CERAMIC TILING", + "number": "093013", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331281 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ceramic Tiling (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:05Z" + }, + { + "id": 60146400, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502772, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502771, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143997824, + "additional_page_count": 0, + "attached_at": "2025-08-16T12:06:40Z", + "attachment_id": 5629659689, + "content_type": "application/pdf", + "document_markup_layer_id": 67179603, + "filename": "09 91 13 1.0 - Interior and Exterior Paint and Joint Compound (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-16T12:06:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2SCBYPSJRSKCCYSAFPBDEGZ?companyId=8089&projectId=2563870&sig=d621173f0ea5242fa7200ef42225ccfdf7e6f7f42da3608332981c1410ffa2af", + "version_timestamp": "2025-08-16T12:06:40Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-16", + "sent_date": "2025-08-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 162502769, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502765, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143888720, + "additional_page_count": 0, + "attached_at": "2025-08-14T13:35:15Z", + "attachment_id": 5624538349, + "content_type": "application/pdf", + "document_markup_layer_id": 67080457, + "filename": "Houston ES Submittal.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-08-14T13:35:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2M9DM70P13PR15GNS5B8EGC?companyId=8089&projectId=2563870&sig=b3e2e7c7c9b0c36732a7d9ebdc021207186ee85abe50ec79dd969bfa1eea5278", + "version_timestamp": "2025-08-14T13:35:15Z" + }, + { + "id": 143888721, + "additional_page_count": 0, + "attached_at": "2025-08-14T13:35:15Z", + "attachment_id": 5624539155, + "content_type": "application/pdf", + "document_markup_layer_id": 67080409, + "filename": "Submittals.pdf", + "markup_updated_at": "2025-08-16T12:02:07Z", + "state": "excluded", + "updated_at": "2025-08-14T13:35:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2M9E87ZNW3WN0FH0JFTR974?companyId=8089&projectId=2563870&sig=a8d23552d4524d4ce668c3fc3127f0e6778829a18026eeef2a9c28b8076280dd", + "version_timestamp": "2025-08-14T13:35:15Z" + }, + { + "id": 143888722, + "additional_page_count": 0, + "attached_at": "2025-08-14T13:35:15Z", + "attachment_id": 5624540160, + "content_type": "application/pdf", + "document_markup_layer_id": 67080389, + "filename": "Substitution Request Form_FGMA.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-08-14T13:35:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2M9EX8JYZPWXS436T4EFZZJ?companyId=8089&projectId=2563870&sig=f0ff969e2531e0b0e69455500bc25d588e5d0db02feaea07b96a0f171087eb67", + "version_timestamp": "2025-08-14T13:35:15Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-14", + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": 3, + "workflow_group_number": 0 + }, + { + "id": 162502766, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-10T18:24:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099113-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037663, + "current_revision_id": 44088275, + "description": "EXTERIOR PAINTING", + "label": "099113 - EXTERIOR PAINTING", + "number": "099113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023476 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior and Exterior Paint and Joint Compound (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-16T12:06:50Z" + }, + { + "id": 60146419, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502764, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502762, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502760, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502759, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502757, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:25:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037663, + "current_revision_id": 44088275, + "description": "EXTERIOR PAINTING", + "label": "099113 - EXTERIOR PAINTING", + "number": "099113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023476 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Painting (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-14T17:12:41Z" + }, + { + "id": 60146440, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:25:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099113-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037663, + "current_revision_id": 44088275, + "description": "EXTERIOR PAINTING", + "label": "099113 - EXTERIOR PAINTING", + "number": "099113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023476 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963844, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.F", + "specification_section_id": null, + "submittal_ids": [ + 60151722, + 60151347, + 60146440 + ], + "title": "Austin Coatings Closeout", + "updated_at": "2025-07-28T12:39:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Painting (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-07-28T12:50:05Z" + }, + { + "id": 60146486, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502753, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502752, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502751, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502750, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502749, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:27:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099113-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037663, + "current_revision_id": 44088275, + "description": "EXTERIOR PAINTING", + "label": "099113 - EXTERIOR PAINTING", + "number": "099113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023476 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Painting (Mock-up)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-08-14T17:12:41Z" + }, + { + "id": 60146800, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:31:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098436-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038294, + "current_revision_id": 45441128, + "description": "SOUND-ABSORBING CEILING UNITS", + "label": "098436 - SOUND-ABSORBING CEILING UNITS", + "number": "098436", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331316 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Ceiling Units (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T15:22:09Z" + }, + { + "id": 60146819, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:31:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098436-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038294, + "current_revision_id": 45441128, + "description": "SOUND-ABSORBING CEILING UNITS", + "label": "098436 - SOUND-ABSORBING CEILING UNITS", + "number": "098436", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331316 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Ceiling Units (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-24T15:23:19Z" + }, + { + "id": 60146835, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:32:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098436-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038294, + "current_revision_id": 45441128, + "description": "SOUND-ABSORBING CEILING UNITS", + "label": "098436 - SOUND-ABSORBING CEILING UNITS", + "number": "098436", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331316 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Ceiling Units (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T15:28:11Z" + }, + { + "id": 60146870, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:32:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098436-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038294, + "current_revision_id": 45441128, + "description": "SOUND-ABSORBING CEILING UNITS", + "label": "098436 - SOUND-ABSORBING CEILING UNITS", + "number": "098436", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331316 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Ceiling Units (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:09Z" + }, + { + "id": 60146927, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:34:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098436-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038294, + "current_revision_id": 45441128, + "description": "SOUND-ABSORBING CEILING UNITS", + "label": "098436 - SOUND-ABSORBING CEILING UNITS", + "number": "098436", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331316 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Ceiling Units (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:10Z" + }, + { + "id": 60147155, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164036458, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164036459, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164036460, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164036457, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143957820, + "additional_page_count": 0, + "attached_at": "2025-08-15T14:29:45Z", + "attachment_id": 5627827198, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "09 84 33 4.0 - Acoustical Wall Panels (PD-MD-Warranty).pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-15T14:29:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2Q25NTYHBBSHGGRR4RZZ150?companyId=8089&projectId=2563870&sig=17a28a82d7bd078e53caa8d331e84832e0528e8cbfe8bee72f7befdd3eb56e06", + "version_timestamp": "2025-08-15T14:29:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-15", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:36:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "Includes product data, maintenance instructions, warranty.", + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-29", + "formatted_number": "098433-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037734, + "current_revision_id": 44088273, + "description": "Sound-Absorbing Wall Units", + "label": "098433 - Sound-Absorbing Wall Units", + "number": "098433", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023438 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Wall Panels (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-15T14:29:45Z" + }, + { + "id": 60147200, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:37:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098433-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037734, + "current_revision_id": 44088273, + "description": "Sound-Absorbing Wall Units", + "label": "098433 - Sound-Absorbing Wall Units", + "number": "098433", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023438 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Wall Units (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-24T15:31:12Z" + }, + { + "id": 60147223, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162728542, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143766940, + "additional_page_count": 0, + "attached_at": "2025-08-12T16:40:56Z", + "attachment_id": 5619471638, + "content_type": "application/pdf", + "document_markup_layer_id": 66970042, + "filename": "09 84 33-3.0 - Acoustical Wall Panel-Samples_BAi_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-12T16:40:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FJEEPNTTJRZ70YSBRP9D41?companyId=8089&projectId=2563870&sig=f462f6a598e1ecf7cfa8c372501b61e6647505341ffc570712a471b71d7ed06a", + "version_timestamp": "2025-08-12T16:40:56Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-07-30", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 162728541, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143130668, + "additional_page_count": 1, + "attached_at": "2025-07-30T13:38:01Z", + "attachment_id": 5591142107, + "content_type": "application/pdf", + "document_markup_layer_id": 66430944, + "filename": "09 84 33 3.0 - Acoustical Wall Panels (Samples).pdf", + "markup_updated_at": "2025-07-30T13:42:12Z", + "state": "excluded", + "updated_at": "2025-07-30T13:42:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1DRTJ2F3ZVH7ND96RDK6JT8?companyId=8089&projectId=2563870&sig=2a827bf719948bd969d0414dc00dc06855c384f1553248514f69fb1353a50e63", + "version_timestamp": "2025-07-30T13:42:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162728540, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162728539, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143130464, + "additional_page_count": 1, + "attached_at": "2025-07-30T13:38:01Z", + "attachment_id": 5591142107, + "content_type": "application/pdf", + "document_markup_layer_id": 66430944, + "filename": "09 84 33 3.0 - Acoustical Wall Panels (Samples).pdf", + "markup_updated_at": "2025-07-30T13:42:12Z", + "state": "outdated", + "updated_at": "2025-07-30T13:38:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1DRTJ2F3ZVH7ND96RDK6JT8?companyId=8089&projectId=2563870&sig=2a827bf719948bd969d0414dc00dc06855c384f1553248514f69fb1353a50e63", + "version_timestamp": "2025-07-30T13:38:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:37:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "AWP-1, -2, -3, -5", + "distributed_at": "2025-08-12T17:20:38Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "098433-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 28380773, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39924169, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5619471638, + "content_type": "application/pdf", + "filename": "09 84 33-3.0 - Acoustical Wall Panel-Samples_BAi_FGMA.pdf", + "source_prostore_file_id": 5619471638, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FJEEPNTTJRZ70YSBRP9D41?companyId=8089&projectId=2563870&sig=f462f6a598e1ecf7cfa8c372501b61e6647505341ffc570712a471b71d7ed06a", + "viewable_document_id": 869906624 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162728542, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as specified.
", + "sent_at": "2025-08-12T17:20:38Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2026-01-19", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037734, + "current_revision_id": 44088273, + "description": "Sound-Absorbing Wall Units", + "label": "098433 - Sound-Absorbing Wall Units", + "number": "098433", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023438 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-11-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Acoustical Wall Panel (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-15T13:12:16Z" + }, + { + "id": 60147246, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:38:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098433-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037734, + "current_revision_id": 44088273, + "description": "Sound-Absorbing Wall Units", + "label": "098433 - Sound-Absorbing Wall Units", + "number": "098433", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023438 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Wall Units (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:12Z" + }, + { + "id": 60147574, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:42:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "098433-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037734, + "current_revision_id": 44088273, + "description": "Sound-Absorbing Wall Units", + "label": "098433 - Sound-Absorbing Wall Units", + "number": "098433", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023438 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound-absorbing Wall Units (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:12Z" + }, + { + "id": 60147688, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:44:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096813-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037732, + "current_revision_id": 45441126, + "description": "TILE CARPETING", + "label": "096813 - TILE CARPETING", + "number": "096813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331311 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tile Carpeting (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:13Z" + }, + { + "id": 60147759, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:44:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096813-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037732, + "current_revision_id": 45441126, + "description": "TILE CARPETING", + "label": "096813 - TILE CARPETING", + "number": "096813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331311 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tile Carpeting (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:31:13Z" + }, + { + "id": 60147875, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:45:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096813-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037732, + "current_revision_id": 45441126, + "description": "TILE CARPETING", + "label": "096813 - TILE CARPETING", + "number": "096813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331311 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tile Carpeting (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:14Z" + }, + { + "id": 60148032, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:48:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096813-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037732, + "current_revision_id": 45441126, + "description": "TILE CARPETING", + "label": "096813 - TILE CARPETING", + "number": "096813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331311 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tile Carpeting (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:15Z" + }, + { + "id": 60148055, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:49:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096813-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037732, + "current_revision_id": 45441126, + "description": "TILE CARPETING", + "label": "096813 - TILE CARPETING", + "number": "096813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331311 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tile Carpeting (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:15Z" + }, + { + "id": 60148358, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:54:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096723-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037730, + "current_revision_id": 44087335, + "description": "RESINOUS FLOORING", + "label": "096723 - RESINOUS FLOORING", + "number": "096723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777010952 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Flooring (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:15Z" + }, + { + "id": 60148373, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T18:54:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096723-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037730, + "current_revision_id": 44087335, + "description": "RESINOUS FLOORING", + "label": "096723 - RESINOUS FLOORING", + "number": "096723", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777010952 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Flooring (Mockup)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-06T12:31:16Z" + }, + { + "id": 60150809, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:23:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096519-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037728, + "current_revision_id": 45441123, + "description": "RESILIENT TILE FLOORING", + "label": "096519 - RESILIENT TILE FLOORING", + "number": "096519", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331302 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Tile Flooring (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:16Z" + }, + { + "id": 60150874, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:24:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096519-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037728, + "current_revision_id": 45441123, + "description": "RESILIENT TILE FLOORING", + "label": "096519 - RESILIENT TILE FLOORING", + "number": "096519", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331302 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Tile Flooring (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:31:17Z" + }, + { + "id": 60150957, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:24:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096519-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037728, + "current_revision_id": 45441123, + "description": "RESILIENT TILE FLOORING", + "label": "096519 - RESILIENT TILE FLOORING", + "number": "096519", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331302 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Tile Flooring (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:17Z" + }, + { + "id": 60151009, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:25:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096519-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037728, + "current_revision_id": 45441123, + "description": "RESILIENT TILE FLOORING", + "label": "096519 - RESILIENT TILE FLOORING", + "number": "096519", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331302 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Tile Flooring (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:18Z" + }, + { + "id": 60151041, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:26:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096519-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037728, + "current_revision_id": 45441123, + "description": "RESILIENT TILE FLOORING", + "label": "096519 - RESILIENT TILE FLOORING", + "number": "096519", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331302 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resilient Tile Flooring (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:18Z" + }, + { + "id": 60151110, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:27:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096623-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039535, + "current_revision_id": 45441125, + "description": "Resinous Matrix Terrazzo Flooring", + "label": "096623 - Resinous Matrix Terrazzo Flooring", + "number": "096623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331310 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Matrix Terrazzo Flooring (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:19Z" + }, + { + "id": 60151144, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:28:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096623-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039535, + "current_revision_id": 45441125, + "description": "Resinous Matrix Terrazzo Flooring", + "label": "096623 - Resinous Matrix Terrazzo Flooring", + "number": "096623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331310 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Matrix Terrazzo Flooring (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T12:31:19Z" + }, + { + "id": 60151182, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:28:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096623-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-26", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039535, + "current_revision_id": 45441125, + "description": "Resinous Matrix Terrazzo Flooring", + "label": "096623 - Resinous Matrix Terrazzo Flooring", + "number": "096623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331310 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Matrix Terrazzo Flooring (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:20Z" + }, + { + "id": 60151199, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:29:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096623-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039535, + "current_revision_id": 45441125, + "description": "Resinous Matrix Terrazzo Flooring", + "label": "096623 - Resinous Matrix Terrazzo Flooring", + "number": "096623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331310 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Matrix Terrazzo Flooring (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:20Z" + }, + { + "id": 60151231, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:29:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "096623-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039535, + "current_revision_id": 45441125, + "description": "Resinous Matrix Terrazzo Flooring", + "label": "096623 - Resinous Matrix Terrazzo Flooring", + "number": "096623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331310 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Resinous Matrix Terrazzo Flooring (Mockup)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-06T12:31:21Z" + }, + { + "id": 60151305, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502733, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502732, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502731, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502730, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502729, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:31:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099600-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037666, + "current_revision_id": 44088278, + "description": "HIGH-PERFORMANCE COATINGS", + "label": "099600 - HIGH-PERFORMANCE COATINGS", + "number": "099600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023484 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High-performance Coatings (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-14T17:12:42Z" + }, + { + "id": 60151325, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502728, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502727, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502726, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502725, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502724, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:31:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099600-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037666, + "current_revision_id": 44088278, + "description": "HIGH-PERFORMANCE COATINGS", + "label": "099600 - HIGH-PERFORMANCE COATINGS", + "number": "099600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023484 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High-performance Coatings (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-14T17:12:41Z" + }, + { + "id": 60151347, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:31:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099600-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037666, + "current_revision_id": 44088278, + "description": "HIGH-PERFORMANCE COATINGS", + "label": "099600 - HIGH-PERFORMANCE COATINGS", + "number": "099600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023484 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963844, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.F", + "specification_section_id": null, + "submittal_ids": [ + 60151722, + 60151347, + 60146440 + ], + "title": "Austin Coatings Closeout", + "updated_at": "2025-07-28T12:39:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High-performance Coatings (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-07-28T12:48:28Z" + }, + { + "id": 60151684, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502748, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502747, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502746, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502745, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502744, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:35:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099123-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037737, + "current_revision_id": 44088276, + "description": "INTERIOR PAINTING", + "label": "099123 - INTERIOR PAINTING", + "number": "099123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023478 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Painting (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-14T17:12:42Z" + }, + { + "id": 60151700, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502743, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502742, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143997995, + "additional_page_count": 0, + "attached_at": "2025-08-16T12:45:26Z", + "attachment_id": 5629671611, + "content_type": "application/pdf", + "document_markup_layer_id": 67214580, + "filename": "09 91 23 2.0 - Interior Paint Samples_RO Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-16T12:45:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2SEEY0HMAT8RDSYBDJ1X5PW?companyId=8089&projectId=2563870&sig=4145df155126f0356ff396d50e94630d5955073c7510467150f22857f2ae034d", + "version_timestamp": "2025-08-16T12:45:26Z" + } + ], + "comment": "Review for approval.", + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-08-16", + "sent_date": "2025-08-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 162502741, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502739, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143909721, + "additional_page_count": 1, + "attached_at": "2025-08-14T17:17:45Z", + "attachment_id": 5625603874, + "content_type": "application/pdf", + "document_markup_layer_id": 67177797, + "filename": "09 91 23 2.0 - Interior Paint Samples.pdf", + "markup_updated_at": "2025-08-16T12:24:01Z", + "state": "excluded", + "updated_at": "2025-08-14T17:17:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2MSC2AAETHFQJXNQSA8C2AX?companyId=8089&projectId=2563870&sig=60645bb6195cb3687b2ed3dc2644351fef12eee9d3e96b411601b8807d0a019b", + "version_timestamp": "2025-08-14T17:17:45Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-14", + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": 3, + "workflow_group_number": 0 + }, + { + "id": 162502740, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-01-10T19:35:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099123-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037737, + "current_revision_id": 44088276, + "description": "INTERIOR PAINTING", + "label": "099123 - INTERIOR PAINTING", + "number": "099123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023478 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Painting (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-16T12:45:34Z" + }, + { + "id": 60151722, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:35:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099123-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037737, + "current_revision_id": 44088276, + "description": "INTERIOR PAINTING", + "label": "099123 - INTERIOR PAINTING", + "number": "099123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023478 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963844, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.F", + "specification_section_id": null, + "submittal_ids": [ + 60151722, + 60151347, + 60146440 + ], + "title": "Austin Coatings Closeout", + "updated_at": "2025-07-28T12:39:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Painting (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-07-28T12:49:23Z" + }, + { + "id": 60151733, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162502738, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162502737, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502736, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162502735, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162502734, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:36:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "099123-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037737, + "current_revision_id": 44088276, + "description": "INTERIOR PAINTING", + "label": "099123 - INTERIOR PAINTING", + "number": "099123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023478 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Interior Painting (Mockup)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-08-14T17:12:42Z" + }, + { + "id": 60151850, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:38:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099726-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039536, + "current_revision_id": 45441133, + "description": "Cementitious Coatings", + "label": "099726 - Cementitious Coatings", + "number": "099726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331332 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cementitious Coatings (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:25Z" + }, + { + "id": 60151886, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:38:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099726-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-13", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039536, + "current_revision_id": 45441133, + "description": "Cementitious Coatings", + "label": "099726 - Cementitious Coatings", + "number": "099726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331332 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-09-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cementitious Coatings (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:25Z" + }, + { + "id": 60151902, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:39:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099726-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039536, + "current_revision_id": 45441133, + "description": "Cementitious Coatings", + "label": "099726 - Cementitious Coatings", + "number": "099726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331332 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cementitious Coatings (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:26Z" + }, + { + "id": 60151923, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:39:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099726-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039536, + "current_revision_id": 45441133, + "description": "Cementitious Coatings", + "label": "099726 - Cementitious Coatings", + "number": "099726", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331332 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cementitious Coatings (Mockup)", + "type": { + "id": -1, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-06T12:31:26Z" + }, + { + "id": 60152081, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:41:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099616-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36544686, + "current_revision_id": 44738270, + "description": "TACKABLE WALL SURFACES", + "label": "099616 - TACKABLE WALL SURFACES", + "number": "099616", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tackable Wall Surfaces (AS)", + "type": { + "id": -1, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:31:27Z" + }, + { + "id": 60152112, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:41:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099616-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36544686, + "current_revision_id": 44738270, + "description": "TACKABLE WALL SURFACES", + "label": "099616 - TACKABLE WALL SURFACES", + "number": "099616", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781149, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.B", + "specification_section_id": null, + "submittal_ids": [ + 60148373, + 60146927, + 60147246, + 60146870, + 60152081, + 60142865, + 60138885, + 60151231, + 60152112, + 60151199, + 60151902, + 60151923, + 60138911, + 60148358, + 60143246, + 60143114, + 60148032, + 60143085, + 60148055, + 60151009, + 60142891, + 60151041, + 60147574 + ], + "title": "Division 009 Closeout", + "updated_at": "2025-01-13T15:44:54Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tackable Wall Surfaces (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:27Z" + }, + { + "id": 60152367, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:44:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099616-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36544686, + "current_revision_id": 44738270, + "description": "TACKABLE WALL SURFACES", + "label": "099616 - TACKABLE WALL SURFACES", + "number": "099616", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tackable Wall Surfaces (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:28Z" + }, + { + "id": 60152539, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-10T19:45:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "099616-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36544686, + "current_revision_id": 44738270, + "description": "TACKABLE WALL SURFACES", + "label": "099616 - TACKABLE WALL SURFACES", + "number": "099616", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2781148, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.A", + "specification_section_id": null, + "submittal_ids": [ + 60142764, + 60151182, + 60143186, + 60142833, + 60138856, + 60147759, + 60142805, + 60151110, + 60150957, + 60150809, + 60151886, + 60138843, + 60151850, + 60152539, + 60140697, + 60147875, + 60140737, + 60152367, + 60143207, + 60142747, + 60143232, + 60151144, + 60150874, + 60147688, + 60138809, + 60140660 + ], + "title": "Division 009 Action Submittals", + "updated_at": "2025-01-10T19:45:51Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tackable Wall Surfaces (Samples)", + "type": { + "id": -1, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-06T12:31:28Z" + }, + { + "id": 60178333, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142131, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142130, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142129, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142128, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142127, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142126, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142125, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:44:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 05 23-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037802, + "current_revision_id": 45441196, + "description": "VALVES, STRAINERS AND VENTS", + "label": "23 05 23 - VALVES, STRAINERS AND VENTS", + "number": "23 05 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331446 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Valves, Strainers and Vents (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:21Z" + }, + { + "id": 60178452, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717190, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717189, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717188, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717187, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717186, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717185, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717184, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717183, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717182, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717181, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:45:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 05 23-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037802, + "current_revision_id": 45441196, + "description": "VALVES, STRAINERS AND VENTS", + "label": "23 05 23 - VALVES, STRAINERS AND VENTS", + "number": "23 05 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331446 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Valves, Strainers and Vents (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:29Z" + }, + { + "id": 60178754, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154894465, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138711451, + "additional_page_count": 0, + "attached_at": "2025-05-02T23:13:24Z", + "attachment_id": 5404303408, + "content_type": "application/pdf", + "document_markup_layer_id": 62802608, + "filename": "23 05 19-1.0 - Gauges, Thermometers and Flow Meters-PD_H2MG_Revised.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-02T23:13:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT9MC8BCY3SZ0N0SAXWXBXER?companyId=8089&projectId=2563870&sig=9958a8e881aaff5788bf097f142758c7c3d3c29ad2963f0979dbd1527dbe040a", + "version_timestamp": "2025-05-02T23:13:24Z" + } + ], + "comment": "Please see attached revised response from H2MG.", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": "2025-05-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 154894466, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154894467, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154894462, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138702174, + "additional_page_count": 0, + "attached_at": "2025-05-02T20:08:57Z", + "attachment_id": 5403967850, + "content_type": "application/pdf", + "document_markup_layer_id": 62797393, + "filename": "23 05 19-1.0 - Gauges, Thermometers and Flow Meters-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-02T20:08:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT99TXJ0TZKANDYZTZZ30DD4?companyId=8089&projectId=2563870&sig=bd986c245c0dda784cc3a90b9324e5e1e8a2a46dbff24f15b39328496e271d12", + "version_timestamp": "2025-05-02T20:08:56Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": "2025-04-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 154894464, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154894463, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154894461, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154894460, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154894457, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138378187, + "additional_page_count": 1, + "attached_at": "2025-04-28T14:43:36Z", + "attachment_id": 5391274961, + "content_type": "application/pdf", + "document_markup_layer_id": 62537418, + "filename": "23 05 19 - Gauges & Thermometers Submittal.pdf", + "markup_updated_at": "2025-04-28T14:50:16Z", + "state": "excluded", + "updated_at": "2025-04-28T14:50:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYDMC1W7T9X05G2J702JEGP?companyId=8089&projectId=2563870&sig=f973fec4628eef91536e7087e9db105cb6d9f3fac937056876727dcccc25f46b", + "version_timestamp": "2025-04-28T14:50:16Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154894458, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154894459, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154894455, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138377367, + "additional_page_count": 1, + "attached_at": "2025-04-28T14:43:36Z", + "attachment_id": 5391274961, + "content_type": "application/pdf", + "document_markup_layer_id": 62537418, + "filename": "23 05 19 - Gauges & Thermometers Submittal.pdf", + "markup_updated_at": "2025-04-28T14:50:16Z", + "state": "outdated", + "updated_at": "2025-04-28T14:43:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYDMC1W7T9X05G2J702JEGP?companyId=8089&projectId=2563870&sig=f973fec4628eef91536e7087e9db105cb6d9f3fac937056876727dcccc25f46b", + "version_timestamp": "2025-04-28T14:43:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154894456, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154894454, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154894453, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:48:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:49:25Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-09", + "formatted_number": "23 05 19-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27109594, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38037238, + "comment": null, + "distributed_attachments": [ + { + "id": 5404303408, + "content_type": "application/pdf", + "filename": "23 05 19-1.0 - Gauges, Thermometers and Flow Meters-PD_H2MG_Revised.pdf", + "source_prostore_file_id": 5404303408, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT9MC8BCY3SZ0N0SAXWXBXER?companyId=8089&projectId=2563870&sig=9958a8e881aaff5788bf097f142758c7c3d3c29ad2963f0979dbd1527dbe040a", + "viewable_document_id": 832460886 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 154894465, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T13:49:25Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037800, + "current_revision_id": 45441195, + "description": "GAUGES, THERMOMETERS AND FLOW METERS", + "label": "23 05 19 - GAUGES, THERMOMETERS AND FLOW METERS", + "number": "23 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331444 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gauges, Thermometers and Flow Meters (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-03T20:58:51Z" + }, + { + "id": 60178828, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717203, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717202, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717201, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717200, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717199, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717198, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717197, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717196, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717195, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717194, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:49:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 05 19-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037800, + "current_revision_id": 45441195, + "description": "GAUGES, THERMOMETERS AND FLOW METERS", + "label": "23 05 19 - GAUGES, THERMOMETERS AND FLOW METERS", + "number": "23 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331444 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gauges, Thermometers and Flow Meters (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-04-29T11:30:03Z" + }, + { + "id": 60179008, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717213, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717212, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717211, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717210, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717209, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717208, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717207, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717206, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717205, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717204, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:52:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 01 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037798, + "current_revision_id": 45441182, + "description": "COMMISSIONING OF MECHANICAL SYSTEMS", + "label": "23 01 00 - COMMISSIONING OF MECHANICAL SYSTEMS", + "number": "23 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331437 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Mechanical Systems (Certificates)", + "type": { + "id": -1, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-06T12:31:30Z" + }, + { + "id": 60179164, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142161, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142160, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142159, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142158, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142157, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142156, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142155, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:54:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 00 01-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037797, + "current_revision_id": 44087379, + "description": "PAINTING \u2013 COMPATIBILTY MODE", + "label": "23 00 01 - PAINTING \u2013 COMPATIBILTY MODE", + "number": "23 00 01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011087 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Painting (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:23Z" + }, + { + "id": 60179184, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717223, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717222, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717221, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717220, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717219, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717218, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717217, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717216, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717215, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717214, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:55:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 00 01-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037797, + "current_revision_id": 44087379, + "description": "PAINTING \u2013 COMPATIBILTY MODE", + "label": "23 00 01 - PAINTING \u2013 COMPATIBILTY MODE", + "number": "23 00 01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011087 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Painting (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:30Z" + }, + { + "id": 60179341, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142124, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142122, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142121, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142120, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142119, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142118, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T15:58:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 00 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037794, + "current_revision_id": 44087378, + "description": "A \u2013 FRACTIONAL AND SMALL INTEGRAL HP ELECTRIC MOTORS", + "label": "23 00 00 - A \u2013 FRACTIONAL AND SMALL INTEGRAL HP ELECTRIC MOTORS", + "number": "23 00 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011084 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fractional and Fractional Integral HP Electric Motors (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:21Z" + }, + { + "id": 60179663, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142154, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142153, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142152, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142151, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142150, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142149, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142148, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:04:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 07 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037806, + "current_revision_id": 45441203, + "description": "INSULATION \u2013 GENERAL", + "label": "23 07 00 - INSULATION \u2013 GENERAL", + "number": "23 07 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331458 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Insulation - General (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:22Z" + }, + { + "id": 60179684, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142206, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142205, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142204, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142203, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142202, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142201, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142200, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:05:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 07 00-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037806, + "current_revision_id": 45441203, + "description": "INSULATION \u2013 GENERAL", + "label": "23 07 00 - INSULATION \u2013 GENERAL", + "number": "23 07 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331458 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Insulation - General (Samples)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:25Z" + }, + { + "id": 60179729, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717180, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717179, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717178, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717177, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717176, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717175, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717174, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717173, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717172, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717171, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:06:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 07 00-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037806, + "current_revision_id": 45441203, + "description": "INSULATION \u2013 GENERAL", + "label": "23 07 00 - INSULATION \u2013 GENERAL", + "number": "23 07 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331458 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Insulation - General (MD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:31Z" + }, + { + "id": 60180201, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154656230, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138751889, + "additional_page_count": 0, + "attached_at": "2025-05-05T16:04:33Z", + "attachment_id": 5406180860, + "content_type": "application/pdf", + "document_markup_layer_id": 62838977, + "filename": "23 05 48-1.0 \u2013 Vibration Isolation_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-05T16:04:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGK1HDBCKMQ79FX2E42G4Q0?companyId=8089&projectId=2563870&sig=59acb89073c7d6c0446ae1115907564c272d1ba0a87f91c128add1654c6eff1f", + "version_timestamp": "2025-05-05T16:04:33Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 154656231, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154656232, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154656225, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138638897, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:43:54Z", + "attachment_id": 5401263961, + "content_type": "application/pdf", + "document_markup_layer_id": 62748595, + "filename": "230548-01-00 - ACR Sbtl Review - Vibration Isolation.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:43:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6SEPK6JQERPDHPKV8QTSBF?companyId=8089&projectId=2563870&sig=ab3e4ad31bc9074815224f6f656b77f874e9ccae0cc684ae50ffd0ef3202983e", + "version_timestamp": "2025-05-01T20:43:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-24", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154656229, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154656228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154656227, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154656226, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154656222, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138232771, + "additional_page_count": 1, + "attached_at": "2025-04-24T13:29:35Z", + "attachment_id": 5385312928, + "content_type": "application/pdf", + "document_markup_layer_id": 62417633, + "filename": "23 05 48 - 1.0 - Pump Inertia Bases Submittal.pdf", + "markup_updated_at": "2025-04-24T13:31:25Z", + "state": "excluded", + "updated_at": "2025-04-24T13:31:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSKZT8BQFZ5PK6GNMZMYDVVT?companyId=8089&projectId=2563870&sig=a82666a041eeb6288f633abdaad20679235994a89ea41d6d3a7f49a631330c6e", + "version_timestamp": "2025-04-24T13:31:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": "2025-04-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154656223, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154656224, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154656219, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138232636, + "additional_page_count": 1, + "attached_at": "2025-04-24T13:29:35Z", + "attachment_id": 5385312928, + "content_type": "application/pdf", + "document_markup_layer_id": 62417633, + "filename": "23 05 48 - 1.0 - Pump Inertia Bases Submittal.pdf", + "markup_updated_at": "2025-04-24T13:31:25Z", + "state": "outdated", + "updated_at": "2025-04-24T13:29:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSKZT8BQFZ5PK6GNMZMYDVVT?companyId=8089&projectId=2563870&sig=a82666a041eeb6288f633abdaad20679235994a89ea41d6d3a7f49a631330c6e", + "version_timestamp": "2025-04-24T13:29:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154656221, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154656220, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154656218, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:12:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:03:30Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 05 48-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27108134, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38035143, + "comment": null, + "distributed_attachments": [ + { + "id": 5406180860, + "content_type": "application/pdf", + "filename": "23 05 48-1.0 \u2013 Vibration Isolation_ACR_H2MG.pdf", + "source_prostore_file_id": 5406180860, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGK1HDBCKMQ79FX2E42G4Q0?companyId=8089&projectId=2563870&sig=59acb89073c7d6c0446ae1115907564c272d1ba0a87f91c128add1654c6eff1f", + "viewable_document_id": 832799170 + } + ], + "response_name": "Approved", + "submittal_approver_id": 154656230, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T13:03:30Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037804, + "current_revision_id": 45441199, + "description": "VIBRATION ISOLATION", + "label": "23 05 48 - VIBRATION ISOLATION", + "number": "23 05 48", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331450 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Vibration Isolation (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T13:03:30Z" + }, + { + "id": 60180266, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142147, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142146, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142145, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142144, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142143, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142142, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142141, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:14:08Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 05 48-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037804, + "current_revision_id": 45441199, + "description": "VIBRATION ISOLATION", + "label": "23 05 48 - VIBRATION ISOLATION", + "number": "23 05 48", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331450 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Vibration Control (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-15T16:02:22Z" + }, + { + "id": 60180381, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149726299, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135218966, + "additional_page_count": 0, + "attached_at": "2025-02-26T17:28:37Z", + "attachment_id": 5265024815, + "content_type": "application/pdf", + "document_markup_layer_id": 59919835, + "filename": "23 05 53-1.0 - Mech Identification \u2013 Mechanical Isolation PD - Response #08.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-26T17:28:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1MTJ5FRF7CCW0FJH9C4MGC?companyId=8089&projectId=2563870&sig=15a9972c93a9b9becfc281406f7176a66b719192bf85ef7d3326f0630622c372", + "version_timestamp": "2025-02-26T17:28:37Z" + } + ], + "comment": "See attached pdf for H2MG's review.", + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": "2025-02-26", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 149726298, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149726297, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149726296, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149726294, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135201830, + "additional_page_count": 1, + "attached_at": "2025-02-26T14:36:22Z", + "attachment_id": 5264308031, + "content_type": "application/pdf", + "document_markup_layer_id": 59904593, + "filename": "23 05 53 -1.0 - HVAC Piping + Equip ID Submittal.pdf", + "markup_updated_at": "2025-02-26T14:45:44Z", + "state": "excluded", + "updated_at": "2025-02-26T14:45:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1AZK1BTQSR99H9JC69GZK6?companyId=8089&projectId=2563870&sig=da5e657d52d594d42bc3fd77ecfbae96ed9a27b19a80499107bb402a17f74bc6", + "version_timestamp": "2025-02-26T14:45:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149726295, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149726291, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135200910, + "additional_page_count": 1, + "attached_at": "2025-02-26T14:36:22Z", + "attachment_id": 5264308031, + "content_type": "application/pdf", + "document_markup_layer_id": 59904593, + "filename": "23 05 53 -1.0 - HVAC Piping + Equip ID Submittal.pdf", + "markup_updated_at": "2025-02-26T14:45:44Z", + "state": "outdated", + "updated_at": "2025-02-26T14:36:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1AZK1BTQSR99H9JC69GZK6?companyId=8089&projectId=2563870&sig=da5e657d52d594d42bc3fd77ecfbae96ed9a27b19a80499107bb402a17f74bc6", + "version_timestamp": "2025-02-26T14:36:22Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 149726293, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149726292, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149726290, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:15:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-26T20:41:43Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-12", + "formatted_number": "23 05 53-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26195092, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36683730, + "comment": "See attached pdf for H2MG's review.
", + "distributed_attachments": [ + { + "id": 5265024815, + "content_type": "application/pdf", + "filename": "23 05 53-1.0 - Mech Identification \u2013 Mechanical Isolation PD - Response #08.pdf", + "source_prostore_file_id": 5265024815, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1MTJ5FRF7CCW0FJH9C4MGC?companyId=8089&projectId=2563870&sig=15a9972c93a9b9becfc281406f7176a66b719192bf85ef7d3326f0630622c372", + "viewable_document_id": 808057311 + } + ], + "response_name": "Approved", + "submittal_approver_id": 149726299, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "", + "sent_at": "2025-02-26T20:41:43Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037805, + "current_revision_id": 45441201, + "description": "MECHANICAL IDENTIFICATION", + "label": "23 05 53 - MECHANICAL IDENTIFICATION", + "number": "23 05 53", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331453 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Identification (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T20:41:43Z" + }, + { + "id": 60182179, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142214, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142213, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142212, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142211, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142210, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142209, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142208, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:44:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 09 26-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Building Automation System (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-15T16:02:25Z" + }, + { + "id": 60182445, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717138, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717137, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717136, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717135, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717134, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717133, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717132, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717131, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717130, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717129, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:48:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 09 26-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Building Automation System (Manual)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:32Z" + }, + { + "id": 60182478, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717128, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717127, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717126, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717125, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717124, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717122, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717121, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717120, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717119, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:49:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 09 26-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Building Automation System (As-builts)", + "type": { + "id": -1, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-06T12:31:32Z" + }, + { + "id": 60182601, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717118, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717117, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717116, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717115, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717114, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717113, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717112, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717111, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717110, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717109, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:50:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 09 26-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Building Automation System (Training)", + "type": { + "id": -1, + "name": "O&M Training", + "translated_name": "O&M Training" + }, + "updated_at": "2025-03-06T12:31:33Z" + }, + { + "id": 60183025, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142197, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142196, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142195, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142194, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142193, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142192, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142191, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:56:00Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 09 26-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Direct Digital Controls Tridium-BACNET (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:25Z" + }, + { + "id": 60183191, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142229, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142227, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142226, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142225, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142224, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142223, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:58:30Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 09 26-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tridium-BACNET Web-based (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:26Z" + }, + { + "id": 60183225, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142255, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142254, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142253, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142252, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142251, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142250, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142249, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T16:58:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 09 26-7", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037811, + "current_revision_id": 44088323, + "description": "C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "label": "23 09 26 - C \u2013 COMMISSIONING OF BUILDING AUTOMATION SYSTEM", + "number": "23 09 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023718 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Tridium-BACNET Web-based (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-15T16:02:27Z" + }, + { + "id": 60183390, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150801155, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136369719, + "additional_page_count": 0, + "attached_at": "2025-03-19T20:37:46Z", + "attachment_id": 5311158731, + "content_type": "application/pdf", + "document_markup_layer_id": 60886003, + "filename": "23 09 00-1.0 - Instrumentation and Control for HVAC_HMG_ACR review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-19T20:37:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR205S8V4WG6GEXMN5VVVV1?companyId=8089&projectId=2563870&sig=bf11b38068ad896ae6b5be1ff693bb8879b10c6aa15c5b78dca1fef15492d714", + "version_timestamp": "2025-03-19T20:37:46Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-17", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 151390027, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 149721348, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135843408, + "additional_page_count": 0, + "attached_at": "2025-03-10T20:46:14Z", + "attachment_id": 5290206682, + "content_type": "application/pdf", + "document_markup_layer_id": 60439429, + "filename": "230900-01-0 - ACR Sbtl Review - Variable Frequency Drives.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-10T20:46:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP0WX6G7C687AVTMBQHFYTFB?companyId=8089&projectId=2563870&sig=336275518a95366b3e1049d45775b238738940df177d3d390278341b96da5760", + "version_timestamp": "2025-03-10T20:46:14Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-10", + "sent_date": "2025-02-26", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 149721351, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149721350, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149721349, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149721346, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135199662, + "additional_page_count": 0, + "attached_at": "2025-02-26T14:22:41Z", + "attachment_id": 5264256444, + "content_type": "application/pdf", + "document_markup_layer_id": 59902867, + "filename": "23 09 00 -1.0 - Variable Frequency Drives Submittal (AHUs).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-26T14:22:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1A596CSF369N54STZ5R9N8?companyId=8089&projectId=2563870&sig=da3d30ab3fd5ace4e5b93bc559284ca0d6e780095d3a9396b71c0c5f653a1e55", + "version_timestamp": "2025-02-26T14:22:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": "2025-02-26", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149721347, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-26", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149721344, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135198343, + "additional_page_count": 1, + "attached_at": "2025-02-26T14:07:37Z", + "attachment_id": 5264206317, + "content_type": "application/pdf", + "document_markup_layer_id": 59902033, + "filename": "23 09 00 -1.0 - Variable Frequency Drives Submittal (AHUs).pdf", + "markup_updated_at": "2025-02-26T14:22:56Z", + "state": "excluded", + "updated_at": "2025-02-26T14:07:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN19A0QQFR37DXDZC9ED89YP?companyId=8089&projectId=2563870&sig=3326c4eafed942ee48ae2d70140d0ee5b4069f5e6aea23af39060c4b4b67ac7e", + "version_timestamp": "2025-02-26T14:07:37Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 149721345, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149721343, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149721342, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T17:02:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-21T13:47:40Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-17", + "formatted_number": "23 09 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26505484, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37144239, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5311158731, + "content_type": "application/pdf", + "filename": "23 09 00-1.0 - Instrumentation and Control for HVAC_HMG_ACR review.pdf", + "source_prostore_file_id": 5311158731, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR205S8V4WG6GEXMN5VVVV1?companyId=8089&projectId=2563870&sig=bf11b38068ad896ae6b5be1ff693bb8879b10c6aa15c5b78dca1fef15492d714", + "viewable_document_id": 816470942 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 150801155, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-21T13:47:40Z" + }, + "lead_time": 75, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037810, + "current_revision_id": 44088322, + "description": "Instrumentation and Control for HVAC", + "label": "23 09 00 - Instrumentation and Control for HVAC", + "number": "23 09 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023712 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Adjustable Frequency Drive (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-12T20:43:26Z" + }, + { + "id": 60183667, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155387179, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139288386, + "additional_page_count": 0, + "attached_at": "2025-05-14T16:48:31Z", + "attachment_id": 5426925910, + "content_type": "application/pdf", + "document_markup_layer_id": 63270526, + "filename": "23 07 19-1.0 - Low & High Temperature Piping Insulation-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-14T16:48:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7V4H9KVR1P2N6B1Y2BATMD?companyId=8089&projectId=2563870&sig=37cd7331c7cafb8407b513409532604aad44e08073e2291007e54d0b30ff883b", + "version_timestamp": "2025-05-14T16:48:31Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 155387180, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155387181, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155387173, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138987372, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:14:46Z", + "attachment_id": 5415199107, + "content_type": "application/pdf", + "document_markup_layer_id": 63031486, + "filename": "230719-01-00 - ACR Sbtl Review - Low & High Temperature Piping Insulation.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-08T17:14:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRE82DPEH87BVEWXN90KPN9?companyId=8089&projectId=2563870&sig=83db138b8e89201f7b07fda512aac09a2807140c09d59aeeba1e95d1d5adaf9b", + "version_timestamp": "2025-05-08T17:14:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-08", + "sent_date": "2025-05-02", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 155387178, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155387176, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155387175, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155387174, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155387170, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138675257, + "additional_page_count": 1, + "attached_at": "2025-05-02T15:32:13Z", + "attachment_id": 5402945938, + "content_type": "application/pdf", + "document_markup_layer_id": 62777059, + "filename": "23 0719 - HVAC Piping Insualtion Submittal.pdf", + "markup_updated_at": "2025-05-02T15:33:31Z", + "state": "excluded", + "updated_at": "2025-05-02T15:33:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT8T0RC3A6AJ95YW7Q5BNW05?companyId=8089&projectId=2563870&sig=bdbc047a45ea603cc601f20206996ab92dab157c48a6550258f10018c756937e", + "version_timestamp": "2025-05-02T15:33:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": "2025-05-02", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155387171, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155387172, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155387168, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138675147, + "additional_page_count": 1, + "attached_at": "2025-05-02T15:32:13Z", + "attachment_id": 5402945938, + "content_type": "application/pdf", + "document_markup_layer_id": 62777059, + "filename": "23 0719 - HVAC Piping Insualtion Submittal.pdf", + "markup_updated_at": "2025-05-02T15:33:31Z", + "state": "outdated", + "updated_at": "2025-05-02T15:32:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT8T0RC3A6AJ95YW7Q5BNW05?companyId=8089&projectId=2563870&sig=bdbc047a45ea603cc601f20206996ab92dab157c48a6550258f10018c756937e", + "version_timestamp": "2025-05-02T15:32:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155387169, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155387167, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155387166, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T17:08:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-15T18:00:44Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-15", + "formatted_number": "23 07 19-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27248857, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38242038, + "comment": null, + "distributed_attachments": [ + { + "id": 5426925910, + "content_type": "application/pdf", + "filename": "23 07 19-1.0 - Low & High Temperature Piping Insulation-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5426925910, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7V4H9KVR1P2N6B1Y2BATMD?companyId=8089&projectId=2563870&sig=37cd7331c7cafb8407b513409532604aad44e08073e2291007e54d0b30ff883b", + "viewable_document_id": 836329644 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155387179, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-15T18:00:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037808, + "current_revision_id": 44089126, + "description": "HVAC Piping Insulation", + "label": "23 07 19 - HVAC Piping Insulation", + "number": "23 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035755 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low & High Temperature Piping Insulation (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T18:00:44Z" + }, + { + "id": 60183686, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717159, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717158, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717157, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717156, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717155, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717154, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717153, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717152, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717151, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717150, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T17:08:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 07 19-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037808, + "current_revision_id": 44089126, + "description": "HVAC Piping Insulation", + "label": "23 07 19 - HVAC Piping Insulation", + "number": "23 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035755 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low Temperature Piping Insulation (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:33Z" + }, + { + "id": 60183865, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717149, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717148, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717147, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717146, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717145, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717143, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717142, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717141, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717140, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717139, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T17:13:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 08 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037809, + "current_revision_id": 45441209, + "description": "AIR AND WATER BALANCE", + "label": "23 08 00 - AIR AND WATER BALANCE", + "number": "23 08 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331473 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air and Water Balance (Reports)", + "type": { + "id": -1, + "name": "Record Submittal - Reports", + "translated_name": "Record Submittal - Reports" + }, + "updated_at": "2025-03-06T12:31:34Z" + }, + { + "id": 60188804, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150954485, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137328131, + "additional_page_count": 0, + "attached_at": "2025-04-07T19:19:52Z", + "attachment_id": 5349618807, + "content_type": "application/pdf", + "document_markup_layer_id": 61691462, + "filename": "23 30 00-1.0 - Ductwork Material-PD_ACR_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-07T19:19:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR8V0PV7BD352GV5HT7Z31DV?companyId=8089&projectId=2563870&sig=ada95967af1a8d88280bda60e3f695c847028044b8dc64c53fd2c843411e86cb", + "version_timestamp": "2025-04-07T19:19:52Z" + } + ], + "comment": "Please see response from Engineer, with the exception noting that the AK liner is not acceptable.", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-07", + "sent_date": "2025-03-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 150954484, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150954483, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136887951, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:56:51Z", + "attachment_id": 5331728208, + "content_type": "application/pdf", + "document_markup_layer_id": 61319249, + "filename": "233000-01-00 - ACR Sbtl Review - Ductwork.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T20:56:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF8NZR4Y0ZXW9PMRV17A8H7?companyId=8089&projectId=2563870&sig=1d91790db37704a731f423ab18eb88a2fd47949b1cfa8b2be7060954ace52f54", + "version_timestamp": "2025-03-28T20:56:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 146142267, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142266, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150954482, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142264, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136627546, + "additional_page_count": 1, + "attached_at": "2025-03-25T14:06:46Z", + "attachment_id": 5321616900, + "content_type": "application/pdf", + "document_markup_layer_id": 61104694, + "filename": "23 30 00 - 1.0 - Ductwork Material (PD).pdf", + "markup_updated_at": "2025-03-25T14:10:39Z", + "state": "excluded", + "updated_at": "2025-03-25T14:10:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6T0T939A4MPA48EWR8J93Q?companyId=8089&projectId=2563870&sig=6115ebe2cff643718717baee70712eaecf3ae6af7e844b22f5d14915f0b7d1e1", + "version_timestamp": "2025-03-25T14:10:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 146142265, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150954481, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136627122, + "additional_page_count": 1, + "attached_at": "2025-03-25T14:06:46Z", + "attachment_id": 5321616900, + "content_type": "application/pdf", + "document_markup_layer_id": 61104694, + "filename": "23 30 00 - 1.0 - Ductwork Material (PD).pdf", + "markup_updated_at": "2025-03-25T14:10:39Z", + "state": "outdated", + "updated_at": "2025-03-25T14:06:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6T0T939A4MPA48EWR8J93Q?companyId=8089&projectId=2563870&sig=6115ebe2cff643718717baee70712eaecf3ae6af7e844b22f5d14915f0b7d1e1", + "version_timestamp": "2025-03-25T14:06:46Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-19", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 150954480, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T18:49:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-07T19:56:16Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-04-04", + "formatted_number": "23 30 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26727715, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37471624, + "comment": "Please see response from Engineer, with the exception noting that the AK liner is not acceptable.
", + "distributed_attachments": [ + { + "id": 5349618807, + "content_type": "application/pdf", + "filename": "23 30 00-1.0 - Ductwork Material-PD_ACR_HMG.pdf", + "source_prostore_file_id": 5349618807, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR8V0PV7BD352GV5HT7Z31DV?companyId=8089&projectId=2563870&sig=ada95967af1a8d88280bda60e3f695c847028044b8dc64c53fd2c843411e86cb", + "viewable_document_id": 823177520 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150954485, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Please see response from Engineer, with the exception noting that the AK liner is not acceptable.
", + "sent_at": "2025-04-07T19:56:16Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-22", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ductwork Material (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-07T19:56:16Z" + }, + { + "id": 60188834, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152505762, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137304817, + "additional_page_count": 0, + "attached_at": "2025-04-07T16:03:30Z", + "attachment_id": 5348761124, + "content_type": "application/pdf", + "document_markup_layer_id": 61671789, + "filename": "23 07 13-2.0 - External Duct Insulation-MD_ACR_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-07T16:03:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR8FV8X3V2NS2RVTNHWBX2T2?companyId=8089&projectId=2563870&sig=bb3e7037950fa69d47078d1475b9408f0a0f6e8db18dda8b555efbe920f4c855", + "version_timestamp": "2025-04-07T16:03:30Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-07", + "sent_date": "2025-03-31", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 152505763, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-31", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152505764, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-31", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 149717166, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136680256, + "additional_page_count": 0, + "attached_at": "2025-03-25T22:48:37Z", + "attachment_id": 5323571223, + "content_type": "application/pdf", + "document_markup_layer_id": 61148576, + "filename": "230713-02-00 - ACR Sbtl Review - External Duct Insulation.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T22:48:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7QWFJH778WEEJ2WPVQ07CR?companyId=8089&projectId=2563870&sig=e6730d74d6a5b35043d4e8cbaf77cf83545464da4544c98dfdbd71a697a16d5e", + "version_timestamp": "2025-03-25T22:48:37Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-04", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-21", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 149717167, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717168, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717169, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717164, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136480472, + "additional_page_count": 1, + "attached_at": "2025-03-21T15:31:49Z", + "attachment_id": 5315659552, + "content_type": "application/pdf", + "document_markup_layer_id": 60978248, + "filename": "23 07 13 -2.0 - External Duct Insulation Submittal - Copy.pdf", + "markup_updated_at": "2025-03-21T15:36:08Z", + "state": "excluded", + "updated_at": "2025-03-21T15:36:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWN9HSW3PH16XN6MYTGCSZB?companyId=8089&projectId=2563870&sig=26e9c67f0531139907d0ba300623a99fc42db75cff86fe72cb3faa19ee90c0db", + "version_timestamp": "2025-03-21T15:36:08Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-21", + "sent_date": "2025-03-21", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149717165, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717161, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136479967, + "additional_page_count": 1, + "attached_at": "2025-03-21T15:31:49Z", + "attachment_id": 5315659552, + "content_type": "application/pdf", + "document_markup_layer_id": 60978248, + "filename": "23 07 13 -2.0 - External Duct Insulation Submittal - Copy.pdf", + "markup_updated_at": "2025-03-21T15:36:08Z", + "state": "outdated", + "updated_at": "2025-03-21T15:31:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWN9HSW3PH16XN6MYTGCSZB?companyId=8089&projectId=2563870&sig=26e9c67f0531139907d0ba300623a99fc42db75cff86fe72cb3faa19ee90c0db", + "version_timestamp": "2025-03-21T15:31:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-21", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": 12, + "workflow_group_number": 0 + }, + { + "id": 149717163, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717162, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717160, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T18:49:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-07T19:55:16Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-04-07", + "formatted_number": "23 07 13-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26727670, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37471564, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5348761124, + "content_type": "application/pdf", + "filename": "23 07 13-2.0 - External Duct Insulation-MD_ACR_HMG.pdf", + "source_prostore_file_id": 5348761124, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR8FV8X3V2NS2RVTNHWBX2T2?companyId=8089&projectId=2563870&sig=bb3e7037950fa69d47078d1475b9408f0a0f6e8db18dda8b555efbe920f4c855", + "viewable_document_id": 823041938 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152505762, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-07T19:55:16Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037807, + "current_revision_id": 45441204, + "description": "EXTERNAL DUCT INSULATION", + "label": "23 07 13 - EXTERNAL DUCT INSULATION", + "number": "23 07 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331462 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "External Duct Insulation (MD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-08T17:15:24Z" + }, + { + "id": 60189176, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149817732, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135250596, + "additional_page_count": 0, + "attached_at": "2025-02-26T22:41:35Z", + "attachment_id": 5266327030, + "content_type": "application/pdf", + "document_markup_layer_id": 59946894, + "filename": "23 73 00-1.0 - Indoor Central Station AHU_PD_HMG review.R1.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-26T22:41:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN26QKJSFDW8VMAQ5XMWG0B0?companyId=8089&projectId=2563870&sig=d781a583f80f3cb6bcd403868870f155cd4aa1e549429259caeda1a29ac5f4bf", + "version_timestamp": "2025-02-26T22:41:35Z" + } + ], + "comment": "See attached for the corrected version.\u00a0\u00a0", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 148091936, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135244448, + "additional_page_count": 0, + "attached_at": "2025-02-26T21:32:08Z", + "attachment_id": 5266077810, + "content_type": "application/pdf", + "document_markup_layer_id": 59944571, + "filename": "23 73 00-1.0 - Indoor Central Station AHU_PD_HMG review.R1.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-26T21:32:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN22R2NGA4G7VNT8M6F0Y29A?companyId=8089&projectId=2563870&sig=0a91c245260a42703590719b61324fccb1c8b84b80c6de2fd8188b3a0e91ee09", + "version_timestamp": "2025-02-26T21:32:08Z" + }, + { + "id": 135217948, + "additional_page_count": 0, + "attached_at": "2025-02-26T17:17:05Z", + "attachment_id": 5264979697, + "content_type": "application/pdf", + "document_markup_layer_id": 59919131, + "filename": "23 73 00-1.0 - Indoor Central Station AHU_PD_HMG review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-26T17:17:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN1M59EPG714QX2VZ4T4HSC6?companyId=8089&projectId=2563870&sig=83284a5ac97ca25c6671a1ac4e639a54632392d5ddd2a3b73f1be217efb33ac7", + "version_timestamp": "2025-02-26T17:17:05Z" + } + ], + "comment": "See attached pdf for updated H2MG's review comments.\u00a0 Design updates forthcoming per meeting on 2/26/25.", + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": "2025-02-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 148091932, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148091933, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148091934, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148091935, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148091930, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134213116, + "additional_page_count": 1, + "attached_at": "2025-02-06T18:55:06Z", + "attachment_id": 5223856899, + "content_type": "application/pdf", + "document_markup_layer_id": 59061862, + "filename": "23 73 00 - 1.0 - Indoor Air Handlers Submittal.pdf", + "markup_updated_at": "2025-02-06T18:57:17Z", + "state": "excluded", + "updated_at": "2025-02-06T18:57:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKE9TVY71BG2BCGXZX732JMZ?companyId=8089&projectId=2563870&sig=c1679d121d30540260867446653a270c858a6b4a2842d735a8cbe7e40c7c6eef", + "version_timestamp": "2025-02-06T18:57:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-13", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148091931, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148091929, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134212945, + "additional_page_count": 1, + "attached_at": "2025-02-06T18:55:06Z", + "attachment_id": 5223856899, + "content_type": "application/pdf", + "document_markup_layer_id": 59061862, + "filename": "23 73 00 - 1.0 - Indoor Air Handlers Submittal.pdf", + "markup_updated_at": "2025-02-06T18:57:17Z", + "state": "outdated", + "updated_at": "2025-02-06T18:55:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKE9TVY71BG2BCGXZX732JMZ?companyId=8089&projectId=2563870&sig=c1679d121d30540260867446653a270c858a6b4a2842d735a8cbe7e40c7c6eef", + "version_timestamp": "2025-02-06T18:55:06Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 148091928, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 148091927, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T18:56:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-05T21:02:55Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 73 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26289864, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36824284, + "comment": "See attached for the corrected version.\u00a0\u00a0
", + "distributed_attachments": [ + { + "id": 5266327030, + "content_type": "application/pdf", + "filename": "23 73 00-1.0 - Indoor Central Station AHU_PD_HMG review.R1.pdf", + "source_prostore_file_id": 5266327030, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN26QKJSFDW8VMAQ5XMWG0B0?companyId=8089&projectId=2563870&sig=d781a583f80f3cb6bcd403868870f155cd4aa1e549429259caeda1a29ac5f4bf", + "viewable_document_id": 808287262 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 149817732, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-03-05T21:02:55Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": "2025-02-05", + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037822, + "current_revision_id": 45441253, + "description": "INDOOR CENTRAL STATION AIR HANDLING UNIT", + "label": "23 73 00 - INDOOR CENTRAL STATION AIR HANDLING UNIT", + "number": "23 73 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331519 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Indoor Central Station Air Handling Unit (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T21:03:15Z" + }, + { + "id": 60189381, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716971, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716970, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716969, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716968, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716967, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716966, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716965, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716964, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716963, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716962, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T18:58:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 73 00-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037822, + "current_revision_id": 45441253, + "description": "INDOOR CENTRAL STATION AIR HANDLING UNIT", + "label": "23 73 00 - INDOOR CENTRAL STATION AIR HANDLING UNIT", + "number": "23 73 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331519 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Indoor Central Station Air Handling Unit (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:35Z" + }, + { + "id": 60189574, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149812509, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135247283, + "additional_page_count": 0, + "attached_at": "2025-02-26T22:01:42Z", + "attachment_id": 5266195839, + "content_type": "application/pdf", + "document_markup_layer_id": 59943237, + "filename": "23 64 23\u20131.0 - Scroll Water Chillers_PD_HMG Response.r1.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-26T22:01:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN24CNCP3HG0H9J2KJ8CTGV0?companyId=8089&projectId=2563870&sig=d13f15753e517fb47e574e693f6cb12d4d796552fcce78f51acb6ca82411beee", + "version_timestamp": "2025-02-26T22:01:41Z" + } + ], + "comment": "See attached for H2MG's updated response.\u00a0 Design updates forthcoming based on meeting held 02/26/2025.", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-02-26", + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 146142281, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134530250, + "additional_page_count": 0, + "attached_at": "2025-02-12T21:55:48Z", + "attachment_id": 5236790593, + "content_type": "application/pdf", + "document_markup_layer_id": 59337827, + "filename": "23 64 23\u20131.0 - Scroll Water Chillers_PD_ACR_HMG Combined review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-12T21:55:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKY2H4GG4FK9D4AWJNH1V0E7?companyId=8089&projectId=2563870&sig=67e6be3708ade8b518b762ee312470e50dececc6476d5e8be7148a6be6fdb1d5", + "version_timestamp": "2025-02-12T21:55:48Z" + } + ], + "comment": "See attached pdf for combined submittal review comments from ACR and HMG.", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-12", + "sent_date": "2025-02-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 147875061, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147875023, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147875022, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142280, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142278, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134089492, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:46:33Z", + "attachment_id": 5217948016, + "content_type": "application/pdf", + "document_markup_layer_id": 58954145, + "filename": "23 64 23 - 1.0 - Scroll Water Chillers.pdf", + "markup_updated_at": "2025-02-04T21:37:10Z", + "state": "excluded", + "updated_at": "2025-02-04T21:37:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK94F7439VV7FXZAHEETQH7Q?companyId=8089&projectId=2563870&sig=f6fd1b8e26ef6c9f0f3b6fece7a6c1ef6568beb54f0353e455da462f35f04767", + "version_timestamp": "2025-02-04T21:37:10Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 146142277, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134071192, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:46:33Z", + "attachment_id": 5217948016, + "content_type": "application/pdf", + "document_markup_layer_id": 58954145, + "filename": "23 64 23 - 1.0 - Scroll Water Chillers.pdf", + "markup_updated_at": "2025-02-04T21:37:10Z", + "state": "outdated", + "updated_at": "2025-02-04T18:46:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK94F7439VV7FXZAHEETQH7Q?companyId=8089&projectId=2563870&sig=f6fd1b8e26ef6c9f0f3b6fece7a6c1ef6568beb54f0353e455da462f35f04767", + "version_timestamp": "2025-02-04T18:46:33Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": 0, + "workflow_group_number": 0 + }, + { + "id": 146142279, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:00:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-14T16:11:27Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 64 23-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26041777, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36456323, + "comment": "See attached pdf for combined submittal review comments from ACR and HMG.
", + "distributed_attachments": [], + "response_name": "Approved as Noted", + "submittal_approver_id": 146142281, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-02-14T16:11:27Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Scroll Water Chillers (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T21:16:35Z" + }, + { + "id": 60189588, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158929777, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141937091, + "additional_page_count": 0, + "attached_at": "2025-07-07T17:05:14Z", + "attachment_id": 5538720865, + "content_type": "application/pdf", + "document_markup_layer_id": 65443813, + "filename": "23 64 23-2.0 - Scroll Water Chillers-SD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-07T17:05:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZJXHJANETEPHC8VN4AG31GA?companyId=8089&projectId=2563870&sig=ea5ebdc46456a8226a97ccc9c99fafacd54e407271623dc38320e50a7b93cf40", + "version_timestamp": "2025-07-07T17:05:14Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-07", + "sent_date": "2025-06-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 5, + "workflow_group_number": 3 + }, + { + "id": 158929773, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141313622, + "additional_page_count": 0, + "attached_at": "2025-06-23T22:17:52Z", + "attachment_id": 5511418348, + "content_type": "application/pdf", + "document_markup_layer_id": 64944463, + "filename": "236423-02-00 - ACR Sbtl Review - Scroll Water Chiller Yard HVAC Piping Shop Drawings.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-23T22:17:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYFDW8MB4F6P4ER5KWQ1YF18?companyId=8089&projectId=2563870&sig=76b3f8508961ad128558f711af585fd40da208d5242dc95d924e51ed2bbe61cc", + "version_timestamp": "2025-06-23T22:17:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-23", + "sent_date": "2025-06-16", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 158929776, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158929775, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158929774, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158929770, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140932777, + "additional_page_count": 1, + "attached_at": "2025-06-13T15:29:05Z", + "attachment_id": 5491017805, + "content_type": "application/pdf", + "document_markup_layer_id": 64611637, + "filename": "51005_Houston ES - Plant & Chiller Yard HVAC Piping Shop Dwg 6-12-25.pdf", + "markup_updated_at": "2025-06-16T18:26:56Z", + "state": "excluded", + "updated_at": "2025-06-16T18:26:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMYH5Z1QXT3KKMPBSVKYZ4J?companyId=8089&projectId=2563870&sig=967b5ed7c0a89c939e65e7e4494c577be0cc677eb58e447d5c43923642811e33", + "version_timestamp": "2025-06-16T18:26:56Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 158929771, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158929772, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158929769, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140839454, + "additional_page_count": 1, + "attached_at": "2025-06-13T15:29:05Z", + "attachment_id": 5491017805, + "content_type": "application/pdf", + "document_markup_layer_id": 64611637, + "filename": "51005_Houston ES - Plant & Chiller Yard HVAC Piping Shop Dwg 6-12-25.pdf", + "markup_updated_at": "2025-06-16T18:26:56Z", + "state": "outdated", + "updated_at": "2025-06-13T15:29:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMYH5Z1QXT3KKMPBSVKYZ4J?companyId=8089&projectId=2563870&sig=967b5ed7c0a89c939e65e7e4494c577be0cc677eb58e447d5c43923642811e33", + "version_timestamp": "2025-06-13T15:29:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158929768, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158929767, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158929766, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:00:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-08T14:21:02Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-06-30", + "formatted_number": "23 64 23-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27923642, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39249257, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5538720865, + "content_type": "application/pdf", + "filename": "23 64 23-2.0 - Scroll Water Chillers-SD_ACR_H2MG.pdf", + "source_prostore_file_id": 5538720865, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZJXHJANETEPHC8VN4AG31GA?companyId=8089&projectId=2563870&sig=ea5ebdc46456a8226a97ccc9c99fafacd54e407271623dc38320e50a7b93cf40", + "viewable_document_id": 855946058 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158929777, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Please review comments from ACR. H2MG comments supersede ACR comments
", + "sent_at": "2025-07-08T14:21:02Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Scroll Water Chillers (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-08T14:21:02Z" + }, + { + "id": 60189678, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716991, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716990, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716989, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716988, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716987, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716985, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716984, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716983, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716982, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:01:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 64 23-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Scroll Water Chillers (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-07-09T11:30:18Z" + }, + { + "id": 60189700, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716981, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716980, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716979, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716978, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716977, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716975, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716974, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716973, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716972, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:02:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 64 23-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Scroll Water Chillers (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-07-09T11:30:19Z" + }, + { + "id": 60189857, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152043411, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137113465, + "additional_page_count": 0, + "attached_at": "2025-04-02T20:24:59Z", + "attachment_id": 5340838175, + "content_type": "application/pdf", + "document_markup_layer_id": 61513190, + "filename": "23 52 16-1.0 - Condensing Boilers - PD_HMG_ACR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-02T20:24:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQW2TW9Q7T89Q6QWF8R14MEN?companyId=8089&projectId=2563870&sig=3e0e823c24eaa0af2674b9dd7e24d5b710e061609b37dfe137a67ad03c6d0640", + "version_timestamp": "2025-04-02T20:24:59Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-02", + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 152043410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152043406, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136887941, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:56:31Z", + "attachment_id": 5331727346, + "content_type": "application/pdf", + "document_markup_layer_id": 61318861, + "filename": "235216-01-00 - ACR Sbtl Review - Condensing Boilers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T20:56:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF8N9K55Z5B0Q2XSZZ71Z8J?companyId=8089&projectId=2563870&sig=28e0a3e2e69767e2dabf39299fb19c79930f1ed33f061afdc48d6052225a16e4", + "version_timestamp": "2025-03-28T20:56:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 152043407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152043408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152043409, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152043403, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136620979, + "additional_page_count": 0, + "attached_at": "2025-03-25T13:06:19Z", + "attachment_id": 5321381153, + "content_type": "application/pdf", + "document_markup_layer_id": 61127068, + "filename": "23 52 16 - 1.0 - Condensing Boilers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T13:06:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6PJ3JP6VJBYDF3XP2H8HPY?companyId=8089&projectId=2563870&sig=618defec4958072632461f92c4915b73bb09e31bf3b3d8aadd8229f765553494", + "version_timestamp": "2025-03-25T13:06:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152043405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152043404, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152043400, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136620264, + "additional_page_count": 0, + "attached_at": "2025-03-25T12:58:01Z", + "attachment_id": 5321354692, + "content_type": "application/pdf", + "document_markup_layer_id": 61098533, + "filename": "23 52 16 - 1.0 - Condensing Boilers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T12:58:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6P2Z8193XF5EAKC734DHNF?companyId=8089&projectId=2563870&sig=99fc57cf4a15c8ff3c660613eb3633817a0d6de24db033f4dfdb883b8f66d3b3", + "version_timestamp": "2025-03-25T12:58:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 152043399, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152043401, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152043402, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:05:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-07T19:54:33Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-04-04", + "formatted_number": "23 52 16-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26727651, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37471540, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5340838175, + "content_type": "application/pdf", + "filename": "23 52 16-1.0 - Condensing Boilers - PD_HMG_ACR.pdf", + "source_prostore_file_id": 5340838175, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQW2TW9Q7T89Q6QWF8R14MEN?companyId=8089&projectId=2563870&sig=3e0e823c24eaa0af2674b9dd7e24d5b710e061609b37dfe137a67ad03c6d0640", + "viewable_document_id": 821681028 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152043411, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "", + "sent_at": "2025-04-07T19:54:33Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039541, + "current_revision_id": 45441245, + "description": "Condensing Boilers", + "label": "23 52 16 - Condensing Boilers", + "number": "23 52 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331512 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Condensing Boilers (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-08T13:43:24Z" + }, + { + "id": 60189888, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155388788, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139297010, + "additional_page_count": 0, + "attached_at": "2025-05-14T18:13:01Z", + "attachment_id": 5427268362, + "content_type": "application/pdf", + "document_markup_layer_id": 63276522, + "filename": "23 52 16-2.0 - Boiler Flue-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-14T18:13:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7ZYWW49WGEP7TBW2ZD1SP7?companyId=8089&projectId=2563870&sig=6b87eeafbe9a047afd2d43a95c9464a038b208d8e0bce5a921ec55a84f4e3074", + "version_timestamp": "2025-05-14T18:13:01Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 155388789, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155388790, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155388783, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138986666, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:06:19Z", + "attachment_id": 5415171419, + "content_type": "application/pdf", + "document_markup_layer_id": 63081112, + "filename": "235216-02-00 - ACR Sbtl Review - Boiler Flue.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-08T17:06:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDR74KCVYVYK800HVB5SB8?companyId=8089&projectId=2563870&sig=5e4b320d8722b810a05ae0f274b3eb84748599efc787618600c4fbb5cd5154e1", + "version_timestamp": "2025-05-08T17:06:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-08", + "sent_date": "2025-05-02", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 155388787, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155388786, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155388785, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155388784, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155388780, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138676718, + "additional_page_count": 1, + "attached_at": "2025-05-02T15:41:26Z", + "attachment_id": 5402984416, + "content_type": "application/pdf", + "document_markup_layer_id": 62777883, + "filename": "23 5216 - Boiler Flue Submittal.pdf", + "markup_updated_at": "2025-05-02T15:43:15Z", + "state": "excluded", + "updated_at": "2025-05-02T15:43:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT8THF5NPWCQ86WVYKTMPS4B?companyId=8089&projectId=2563870&sig=088eed1f013df69136605453ec7120c4ca1e6a222a3c415402d9c9274629bcee", + "version_timestamp": "2025-05-02T15:43:15Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": "2025-05-02", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155388781, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155388782, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155388777, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138676517, + "additional_page_count": 1, + "attached_at": "2025-05-02T15:41:26Z", + "attachment_id": 5402984416, + "content_type": "application/pdf", + "document_markup_layer_id": 62777883, + "filename": "23 5216 - Boiler Flue Submittal.pdf", + "markup_updated_at": "2025-05-02T15:43:15Z", + "state": "outdated", + "updated_at": "2025-05-02T15:41:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT8THF5NPWCQ86WVYKTMPS4B?companyId=8089&projectId=2563870&sig=088eed1f013df69136605453ec7120c4ca1e6a222a3c415402d9c9274629bcee", + "version_timestamp": "2025-05-02T15:41:26Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155388779, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155388778, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155388776, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:05:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-23T13:39:29Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-15", + "formatted_number": "23 52 16-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27352868, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38398764, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5427268362, + "content_type": "application/pdf", + "filename": "23 52 16-2.0 - Boiler Flue-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5427268362, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7ZYWW49WGEP7TBW2ZD1SP7?companyId=8089&projectId=2563870&sig=6b87eeafbe9a047afd2d43a95c9464a038b208d8e0bce5a921ec55a84f4e3074", + "viewable_document_id": 836358676 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155388788, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "Please furnish as submitted.
", + "sent_at": "2025-05-23T13:39:29Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039541, + "current_revision_id": 45441245, + "description": "Condensing Boilers", + "label": "23 52 16 - Condensing Boilers", + "number": "23 52 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331512 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Boiler Flue (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-23T13:39:29Z" + }, + { + "id": 60189906, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717012, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717011, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717010, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717009, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717008, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717007, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717006, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717005, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717004, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717003, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:06:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 52 16-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039541, + "current_revision_id": 45441245, + "description": "Condensing Boilers", + "label": "23 52 16 - Condensing Boilers", + "number": "23 52 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331512 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Condensing Boilers (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:36Z" + }, + { + "id": 60189918, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717001, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717000, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716999, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716998, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716997, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716996, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716995, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716994, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716993, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716992, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:06:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 52 16-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039541, + "current_revision_id": 45441245, + "description": "Condensing Boilers", + "label": "23 52 16 - Condensing Boilers", + "number": "23 52 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331512 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Condensing Boilers (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:37Z" + }, + { + "id": 60190703, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154906087, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139249140, + "additional_page_count": 0, + "attached_at": "2025-05-13T23:10:34Z", + "attachment_id": 5425340597, + "content_type": "application/pdf", + "document_markup_layer_id": 63237139, + "filename": "23 36 16-1.0 - Air Terminal Units (Single Duct)-PD_AISD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-13T23:10:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV5YKPYXANVHZC45X6Q2QVSE?companyId=8089&projectId=2563870&sig=61f2f41d91043ba7ee8274e669e6021940d6237b589aac7f6a36f81fc9fac43f", + "version_timestamp": "2025-05-13T23:10:34Z" + } + ], + "comment": "See attached response from AISD and Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 154906088, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154906089, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154906082, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138789608, + "additional_page_count": 0, + "attached_at": "2025-05-05T21:56:32Z", + "attachment_id": 5407501416, + "content_type": "application/pdf", + "document_markup_layer_id": 62867199, + "filename": "233616-01-00 - ACR Sbtl Review - Air Terminal Units.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-05T21:56:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTH76GJZBKGRP7MSK3G77PVX?companyId=8089&projectId=2563870&sig=c76cc6f7536aff52f9027c9acc22be42eeb072a8814d649ea984911c1b5cc77b", + "version_timestamp": "2025-05-05T21:56:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-04-28", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154906086, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154906085, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154906084, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154906083, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154906079, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138400063, + "additional_page_count": 0, + "attached_at": "2025-04-28T18:08:23Z", + "attachment_id": 5392061360, + "content_type": "application/pdf", + "document_markup_layer_id": 62556499, + "filename": "23 36 16 - Single Duct VAV Boxes Submittal.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-28T18:08:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYSA627T1KMXQVF9TK5326X?companyId=8089&projectId=2563870&sig=8125c2f5e69fe0e3a79492eccbfdf589f453f1ea9277bc752ab62ee1ba0e67f3", + "version_timestamp": "2025-04-28T18:08:23Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154906080, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154906081, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154906077, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138395772, + "additional_page_count": 1, + "attached_at": "2025-04-28T17:30:48Z", + "attachment_id": 5391920823, + "content_type": "application/pdf", + "document_markup_layer_id": 62552989, + "filename": "23 36 16 - Single Duct VAV Boxes Submittal.pdf", + "markup_updated_at": "2025-04-28T18:07:12Z", + "state": "excluded", + "updated_at": "2025-04-28T17:30:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYQ5M98CBM1JB5H28F7JV4R?companyId=8089&projectId=2563870&sig=e22737666d0d761d6e780276719834ff1463b4062adc445b80d8ca65e4573b55", + "version_timestamp": "2025-04-28T17:30:48Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": "2025-04-28", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154906076, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": "2025-04-28", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154906074, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154906078, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:21:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-15T13:52:14Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-12", + "formatted_number": "23 36 16-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27241756, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38231858, + "comment": "See attached response from AISD and Engineers.
", + "distributed_attachments": [ + { + "id": 5425340597, + "content_type": "application/pdf", + "filename": "23 36 16-1.0 - Air Terminal Units (Single Duct)-PD_AISD_ACR_H2MG.pdf", + "source_prostore_file_id": 5425340597, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV5YKPYXANVHZC45X6Q2QVSE?companyId=8089&projectId=2563870&sig=61f2f41d91043ba7ee8274e669e6021940d6237b589aac7f6a36f81fc9fac43f", + "viewable_document_id": 836081574 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 154906087, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-15T13:52:14Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037820, + "current_revision_id": 45441242, + "description": "AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "label": "23 36 16 - AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "number": "23 36 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331509 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Terminal Units (Single Duct) (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-16T18:20:54Z" + }, + { + "id": 60190715, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142329, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142328, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142327, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142326, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142325, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142324, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142323, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:22:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 36 16-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037820, + "current_revision_id": 45441242, + "description": "AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "label": "23 36 16 - AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "number": "23 36 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331509 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Terminal Units (Single and Double Duct VAV Boxes) (SD)", + "type": { + "id": -1, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-15T16:02:30Z" + }, + { + "id": 60190727, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717033, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717032, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717031, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717030, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717029, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717028, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717027, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717026, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717025, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717024, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:22:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 36 16-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037820, + "current_revision_id": 45441242, + "description": "AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "label": "23 36 16 - AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "number": "23 36 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331509 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Terminal Units (Single and Double Duct VAV Boxes) (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:37Z" + }, + { + "id": 60190736, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717023, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717022, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717021, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717020, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717019, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717018, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717017, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717016, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717015, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717014, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:22:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 36 16-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037820, + "current_revision_id": 45441242, + "description": "AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "label": "23 36 16 - AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "number": "23 36 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331509 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Terminal Units (Single and Double Duct VAV Boxes) (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:38Z" + }, + { + "id": 60190873, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154897523, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138857036, + "additional_page_count": 0, + "attached_at": "2025-05-06T19:53:09Z", + "attachment_id": 5410040547, + "content_type": "application/pdf", + "document_markup_layer_id": 62923471, + "filename": "23 34 00-1.0 - HVAC Fans-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-06T19:53:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKJGB6S594R0RJW7ETJD8GB?companyId=8089&projectId=2563870&sig=84ead11e1bd303049b9b51fa947f8abccfa895c9169fd1a372df8fb2f2c9dcd6", + "version_timestamp": "2025-05-06T19:53:09Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 154897524, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154897525, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154897518, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138789716, + "additional_page_count": 0, + "attached_at": "2025-05-05T21:57:52Z", + "attachment_id": 5407504648, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "233400-01-00 - ACR Sbtl Review - HVAC Fans.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-05T21:57:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTH790WX21GWXJDT1M7M5826?companyId=8089&projectId=2563870&sig=ad30f3f5b793765f63dbe467a8370faeb1e36db5977d8d36eb030a8cc6335b2b", + "version_timestamp": "2025-05-05T21:57:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-04-28", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154897522, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154897521, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154897520, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154897519, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154897515, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138381381, + "additional_page_count": 1, + "attached_at": "2025-04-28T15:00:36Z", + "attachment_id": 5391344766, + "content_type": "application/pdf", + "document_markup_layer_id": 62540409, + "filename": "23 34 00 - HVAC Fans Submittal.pdf", + "markup_updated_at": "2025-04-28T15:18:19Z", + "state": "excluded", + "updated_at": "2025-04-28T15:18:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYEJ8M0ZCEVEXG38DYDRV5E?companyId=8089&projectId=2563870&sig=0129e27f3a5f7816ab05275d6f173d03f79f28c5b8943d3c5cb5c9c46f52e61a", + "version_timestamp": "2025-04-28T15:18:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154897516, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154897517, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154897512, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138379345, + "additional_page_count": 1, + "attached_at": "2025-04-28T15:00:36Z", + "attachment_id": 5391344766, + "content_type": "application/pdf", + "document_markup_layer_id": 62540409, + "filename": "23 34 00 - HVAC Fans Submittal.pdf", + "markup_updated_at": "2025-04-28T15:18:19Z", + "state": "outdated", + "updated_at": "2025-04-28T15:00:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYEJ8M0ZCEVEXG38DYDRV5E?companyId=8089&projectId=2563870&sig=0129e27f3a5f7816ab05275d6f173d03f79f28c5b8943d3c5cb5c9c46f52e61a", + "version_timestamp": "2025-04-28T15:00:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154897514, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154897513, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154897511, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:25:08Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T20:12:55Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-12", + "formatted_number": "23 34 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27121306, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38053567, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5410040547, + "content_type": "application/pdf", + "filename": "23 34 00-1.0 - HVAC Fans-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5410040547, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKJGB6S594R0RJW7ETJD8GB?companyId=8089&projectId=2563870&sig=84ead11e1bd303049b9b51fa947f8abccfa895c9169fd1a372df8fb2f2c9dcd6", + "viewable_document_id": 833470667 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 154897523, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T20:12:55Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037818, + "current_revision_id": 45441239, + "description": "Fans", + "label": "23 34 00 - Fans", + "number": "23 34 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331506 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "HVAC Fans (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T13:14:57Z" + }, + { + "id": 60190886, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154938443, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138835416, + "additional_page_count": 0, + "attached_at": "2025-05-06T16:43:42Z", + "attachment_id": 5409282455, + "content_type": "application/pdf", + "document_markup_layer_id": 62905744, + "filename": "23 34 00-2.0 - Kitchen Exhaust Fans-PD_AISD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-06T16:43:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTK7NYPWAR7X3GACF0ZFK6NZ?companyId=8089&projectId=2563870&sig=af2536763b91cfdeb3f34c80bb7ada2d668cc5f18d9492b6cee6eb24b00ba5d8", + "version_timestamp": "2025-05-06T16:43:42Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 154938444, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154938445, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154938438, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138789662, + "additional_page_count": 0, + "attached_at": "2025-05-05T21:57:17Z", + "attachment_id": 5407503112, + "content_type": "application/pdf", + "document_markup_layer_id": 62868837, + "filename": "233400-02-00 - ACR Sbtl Review - Kitchen Exhaust Fans.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-05T21:57:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTH77VYFA1Z3TFJJ764MW43B?companyId=8089&projectId=2563870&sig=c38a1b1ac61effae717ed9e7306b9720b984192ed9367d370c32db1a1f1541ce", + "version_timestamp": "2025-05-05T21:57:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-04-28", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154938442, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154938441, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154938440, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154938439, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154938435, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138401352, + "additional_page_count": 1, + "attached_at": "2025-04-28T18:18:33Z", + "attachment_id": 5392099824, + "content_type": "application/pdf", + "document_markup_layer_id": 62557532, + "filename": "23 34 00 - Kitchen Exhaust Fans Submittal.pdf", + "markup_updated_at": "2025-04-28T18:20:04Z", + "state": "excluded", + "updated_at": "2025-04-28T18:20:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYSX2RRB5SJV399FTPSZXF2?companyId=8089&projectId=2563870&sig=f6417335669356ccac856dbea55661614cc098ffede1f2e9c81f912a7e3972cd", + "version_timestamp": "2025-04-28T18:20:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": "2025-04-28", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154938436, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154938437, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154938432, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138401197, + "additional_page_count": 1, + "attached_at": "2025-04-28T18:18:33Z", + "attachment_id": 5392099824, + "content_type": "application/pdf", + "document_markup_layer_id": 62557532, + "filename": "23 34 00 - Kitchen Exhaust Fans Submittal.pdf", + "markup_updated_at": "2025-04-28T18:20:04Z", + "state": "outdated", + "updated_at": "2025-04-28T18:18:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSYSX2RRB5SJV399FTPSZXF2?companyId=8089&projectId=2563870&sig=f6417335669356ccac856dbea55661614cc098ffede1f2e9c81f912a7e3972cd", + "version_timestamp": "2025-04-28T18:18:33Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154938434, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154938433, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154938431, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:25:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T20:14:52Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-05-12", + "formatted_number": "23 34 00-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27121369, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38053651, + "comment": null, + "distributed_attachments": [ + { + "id": 5409282455, + "content_type": "application/pdf", + "filename": "23 34 00-2.0 - Kitchen Exhaust Fans-PD_AISD_ACR_H2MG.pdf", + "source_prostore_file_id": 5409282455, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTK7NYPWAR7X3GACF0ZFK6NZ?companyId=8089&projectId=2563870&sig=af2536763b91cfdeb3f34c80bb7ada2d668cc5f18d9492b6cee6eb24b00ba5d8", + "viewable_document_id": 833333770 + } + ], + "response_name": "Approved", + "submittal_approver_id": 154938443, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T20:14:52Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037818, + "current_revision_id": 45441239, + "description": "Fans", + "label": "23 34 00 - Fans", + "number": "23 34 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331506 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Kitchen Exhaust Fans (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T20:14:52Z" + }, + { + "id": 60190979, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154657537, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138752689, + "additional_page_count": 0, + "attached_at": "2025-05-05T16:12:12Z", + "attachment_id": 5406210480, + "content_type": "application/pdf", + "document_markup_layer_id": 62839599, + "filename": "23 33 00-2.0 - Attenuators_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-05T16:12:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGKFH52KN0JQA00BE7DBXMD?companyId=8089&projectId=2563870&sig=84e23a85e0c9386c6558fb642a77446ea9fc8b61cdb6eae3c2f7b25905c60de0", + "version_timestamp": "2025-05-05T16:12:12Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 154657538, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154657539, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154657532, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138639186, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:47:05Z", + "attachment_id": 5401275098, + "content_type": "application/pdf", + "document_markup_layer_id": 62748808, + "filename": "233300-02-00 - ACR Sbtl Review - Sound Attenuators - Supply and Return.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:47:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6SMD8M1BG2N67Q4R3KHNXF?companyId=8089&projectId=2563870&sig=3f5e5c5f7b95ee66a91e709c4718627fd4b10be32ea76763e1a824acfdcbb222", + "version_timestamp": "2025-05-01T20:47:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-24", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154657536, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154657535, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154657534, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154657533, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154657529, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138233653, + "additional_page_count": 1, + "attached_at": "2025-04-24T13:38:50Z", + "attachment_id": 5385343643, + "content_type": "application/pdf", + "document_markup_layer_id": 62418473, + "filename": "23 33 00 -2.0 - Sound Attenuators Submittal.pdf", + "markup_updated_at": "2025-04-24T13:41:05Z", + "state": "excluded", + "updated_at": "2025-04-24T13:41:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM0AM4CQEZKB1K55ESMWJ3N?companyId=8089&projectId=2563870&sig=e68dc3df90adda8eb28febe2b53e2768e5101941ad54b14d36f38c50a3a6a5f7", + "version_timestamp": "2025-04-24T13:41:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": "2025-04-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154657530, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154657531, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154657525, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138233461, + "additional_page_count": 1, + "attached_at": "2025-04-24T13:38:50Z", + "attachment_id": 5385343643, + "content_type": "application/pdf", + "document_markup_layer_id": 62418473, + "filename": "23 33 00 -2.0 - Sound Attenuators Submittal.pdf", + "markup_updated_at": "2025-04-24T13:41:05Z", + "state": "outdated", + "updated_at": "2025-04-24T13:38:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM0AM4CQEZKB1K55ESMWJ3N?companyId=8089&projectId=2563870&sig=e68dc3df90adda8eb28febe2b53e2768e5101941ad54b14d36f38c50a3a6a5f7", + "version_timestamp": "2025-04-24T13:38:50Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154657528, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154657527, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154657526, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:27:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:58:26Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 33 00-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 27109901, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38037709, + "comment": null, + "distributed_attachments": [ + { + "id": 5406210480, + "content_type": "application/pdf", + "filename": "23 33 00-2.0 - Attenuators_ACR_H2MG.pdf", + "source_prostore_file_id": 5406210480, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGKFH52KN0JQA00BE7DBXMD?companyId=8089&projectId=2563870&sig=84e23a85e0c9386c6558fb642a77446ea9fc8b61cdb6eae3c2f7b25905c60de0", + "viewable_document_id": 832805937 + } + ], + "response_name": "Approved", + "submittal_approver_id": 154657537, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T13:58:26Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037817, + "current_revision_id": 45441235, + "description": "AIR DEVICES", + "label": "23 33 00 - AIR DEVICES", + "number": "23 33 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331504 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sound Attenuators Supply/Return (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T13:58:26Z" + }, + { + "id": 60191365, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158030224, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141004562, + "additional_page_count": 0, + "attached_at": "2025-06-17T17:27:50Z", + "attachment_id": 5497876283, + "content_type": "application/pdf", + "document_markup_layer_id": 64680624, + "filename": "23 25 13-1.0 - Closed Loop Water Treatment-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-17T17:27:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZEX1ZGCWGDSY5M5FNEJE1T?companyId=8089&projectId=2563870&sig=dcea224cbe8ef2b06cd310920137c7a3057052cdf044f014754e089f8b6629f9", + "version_timestamp": "2025-06-17T17:27:50Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-10", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 158030220, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140632825, + "additional_page_count": 0, + "attached_at": "2025-06-10T15:55:27Z", + "attachment_id": 5482294603, + "content_type": "application/pdf", + "document_markup_layer_id": 64366970, + "filename": "232513-01-00 - ACR Sbtl Review - HVAC Closed Loop Water Treatment.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-10T15:55:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXD8TVCXMH87SWC8HGXXHEK4?companyId=8089&projectId=2563870&sig=e02aa04d9ffa2dfa69145a7ac920b66236141ac7aec33c68855e6d73345e9a33", + "version_timestamp": "2025-06-10T15:55:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 158030223, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158030222, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158030221, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158030217, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140300803, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:03:19Z", + "attachment_id": 5468180010, + "content_type": "application/pdf", + "document_markup_layer_id": 64091818, + "filename": "23 2513 - HVAC Water Treatment Submittal.pdf", + "markup_updated_at": "2025-06-03T21:05:43Z", + "state": "excluded", + "updated_at": "2025-06-03T21:05:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVSNY7MBXX2GJ256VS9GRNV?companyId=8089&projectId=2563870&sig=2d695e8d7046fe3bfbe17f92e30340216138b0c2436cb781452434f525e9e32e", + "version_timestamp": "2025-06-03T21:05:43Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158030218, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158030219, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158030214, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140300604, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:03:19Z", + "attachment_id": 5468180010, + "content_type": "application/pdf", + "document_markup_layer_id": 64091818, + "filename": "23 2513 - HVAC Water Treatment Submittal.pdf", + "markup_updated_at": "2025-06-03T21:05:43Z", + "state": "outdated", + "updated_at": "2025-06-03T21:03:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVSNY7MBXX2GJ256VS9GRNV?companyId=8089&projectId=2563870&sig=2d695e8d7046fe3bfbe17f92e30340216138b0c2436cb781452434f525e9e32e", + "version_timestamp": "2025-06-03T21:03:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158030216, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158030215, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158030213, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:35:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-17T17:36:57Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-06-17", + "formatted_number": "23 25 13-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27666726, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38868675, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5497876283, + "content_type": "application/pdf", + "filename": "23 25 13-1.0 - Closed Loop Water Treatment-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5497876283, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZEX1ZGCWGDSY5M5FNEJE1T?companyId=8089&projectId=2563870&sig=dcea224cbe8ef2b06cd310920137c7a3057052cdf044f014754e089f8b6629f9", + "viewable_document_id": 848752953 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158030224, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-17T17:36:57Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037815, + "current_revision_id": 45441229, + "description": "CLOSED LOOP WATER TREATMENT SYSTEMS", + "label": "23 25 13 - CLOSED LOOP WATER TREATMENT SYSTEMS", + "number": "23 25 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331495 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Closed Loop Water Treatment (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-17T17:36:57Z" + }, + { + "id": 60191388, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717058, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717057, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717056, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717055, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717054, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717053, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717052, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717051, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717050, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717049, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:35:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 25 13-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037815, + "current_revision_id": 45441229, + "description": "CLOSED LOOP WATER TREATMENT SYSTEMS", + "label": "23 25 13 - CLOSED LOOP WATER TREATMENT SYSTEMS", + "number": "23 25 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331495 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Closed Loop Water Treatment (Manual)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:39Z" + }, + { + "id": 60191870, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150216229, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135684985, + "additional_page_count": 0, + "attached_at": "2025-03-06T21:11:02Z", + "attachment_id": 5283998728, + "content_type": "application/pdf", + "document_markup_layer_id": 60313014, + "filename": "23 21 23-1.0 - Pumps_PD_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-06T21:11:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNPMQAKW9N4C03QHMVT85N4T?companyId=8089&projectId=2563870&sig=67369d1bb746dd326718e733a21b910b9b7866c5bfdc52e68beaebd9c4ebb315", + "version_timestamp": "2025-03-06T21:11:02Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-06", + "sent_date": "2025-03-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 150216227, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150216228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150216226, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135682313, + "additional_page_count": 0, + "attached_at": "2025-03-06T20:45:20Z", + "attachment_id": 5283898547, + "content_type": "application/pdf", + "document_markup_layer_id": 60310402, + "filename": "23 21 23-1.0 - Pumps_PD_HMG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-06T20:45:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNPK8CN0MVDYF5W4361JBT30?companyId=8089&projectId=2563870&sig=ba3360d91a145098b020a557d6615a758f0d278d6cd56ef5fc9203dbc15dcc87", + "version_timestamp": "2025-03-06T20:45:20Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-06", + "sent_date": "2025-03-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 150216225, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150216224, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150216223, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150216220, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135490760, + "additional_page_count": 1, + "attached_at": "2025-03-04T13:37:07Z", + "attachment_id": 5276375818, + "content_type": "application/pdf", + "document_markup_layer_id": 60144953, + "filename": "23 21 23 - 1.0 - Hydronic Pumps Submittal.pdf", + "markup_updated_at": "2025-03-04T13:40:00Z", + "state": "excluded", + "updated_at": "2025-03-04T13:40:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNGNZBDSA666W1A7076JXEEE?companyId=8089&projectId=2563870&sig=e96fed8c0cedc75a26527da9f336f8a173699278928168ca98e43a6a25cccb68", + "version_timestamp": "2025-03-04T13:40:00Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150216221, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150216217, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135490556, + "additional_page_count": 1, + "attached_at": "2025-03-04T13:37:07Z", + "attachment_id": 5276375818, + "content_type": "application/pdf", + "document_markup_layer_id": 60144953, + "filename": "23 21 23 - 1.0 - Hydronic Pumps Submittal.pdf", + "markup_updated_at": "2025-03-04T13:40:00Z", + "state": "outdated", + "updated_at": "2025-03-04T13:37:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNGNZBDSA666W1A7076JXEEE?companyId=8089&projectId=2563870&sig=e96fed8c0cedc75a26527da9f336f8a173699278928168ca98e43a6a25cccb68", + "version_timestamp": "2025-03-04T13:37:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 150216219, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150216218, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150216216, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:43:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-07T16:28:30Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-13", + "formatted_number": "23 21 23-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26318204, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36866676, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5283998728, + "content_type": "application/pdf", + "filename": "23 21 23-1.0 - Pumps_PD_HMG.pdf", + "source_prostore_file_id": 5283998728, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNPMQAKW9N4C03QHMVT85N4T?companyId=8089&projectId=2563870&sig=67369d1bb746dd326718e733a21b910b9b7866c5bfdc52e68beaebd9c4ebb315", + "viewable_document_id": 811583984 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 150216229, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-07T16:28:30Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037814, + "current_revision_id": 45441228, + "description": "PUMPS", + "label": "23 21 23 - PUMPS", + "number": "23 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331494 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pumps (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T16:28:36Z" + }, + { + "id": 60191911, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717078, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717077, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717076, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717075, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717074, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717073, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717072, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717071, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717070, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717069, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:44:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 21 23-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037814, + "current_revision_id": 45441228, + "description": "PUMPS", + "label": "23 21 23 - PUMPS", + "number": "23 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331494 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pumps (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:40Z" + }, + { + "id": 60191940, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717068, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717067, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717065, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717064, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717063, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717062, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717061, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717060, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717059, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:44:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 21 23-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037814, + "current_revision_id": 45441228, + "description": "PUMPS", + "label": "23 21 23 - PUMPS", + "number": "23 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331494 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pumps (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:40Z" + }, + { + "id": 60192088, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155377366, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139170161, + "additional_page_count": 0, + "attached_at": "2025-05-12T23:56:29Z", + "attachment_id": 5422360964, + "content_type": "application/pdf", + "document_markup_layer_id": 63171787, + "filename": "23 21 13-1.0 \u2013 HW and CHW Piping Valves_ACR_H2MG_Revised-5_2.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-12T23:56:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3ET20AKBRYYTBKDRT6ZCTG?companyId=8089&projectId=2563870&sig=9246431f3c9c85c569c51d91a49ecd6ec1213ee70422e08b05a4b52203faacf6", + "version_timestamp": "2025-05-12T23:56:29Z" + } + ], + "comment": "See attached revised response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 4 + }, + { + "id": 153228178, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138193455, + "additional_page_count": 0, + "attached_at": "2025-04-23T18:36:44Z", + "attachment_id": 5383696889, + "content_type": "application/pdf", + "document_markup_layer_id": 62391846, + "filename": "23 21 13-1.0 \u2013 HW and CHW Piping Valves_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T18:36:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHYYQG7MTRDWQ4YDKTN6H2Y?companyId=8089&projectId=2563870&sig=b75513e4fee8bd89c1f9310e4e020ae7d4f7634fde301d5d57ecfda0a26be0a2", + "version_timestamp": "2025-04-23T18:36:44Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 153228179, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153228180, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153228174, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137797543, + "additional_page_count": 0, + "attached_at": "2025-04-15T21:36:38Z", + "attachment_id": 5367981556, + "content_type": "application/pdf", + "document_markup_layer_id": 62066490, + "filename": "232113.03-01-00 - ACR Sbtl Review - Hot Water and Chilled Water Piping, Valves and Appurtenances.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-15T21:36:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRXP3KXVM1HP5F9ANGETS9G6?companyId=8089&projectId=2563870&sig=b42d4253f68798b330bfdc6e9f55c445740044951118ac614f35d3c850e5fe08", + "version_timestamp": "2025-04-15T21:36:38Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-15", + "sent_date": "2025-04-08", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 153228177, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153228176, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153228175, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153228171, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137365158, + "additional_page_count": 1, + "attached_at": "2025-04-08T13:11:55Z", + "attachment_id": 5351139940, + "content_type": "application/pdf", + "document_markup_layer_id": 61721095, + "filename": "23 2113 - Hydronic Piping & Valves.pdf", + "markup_updated_at": "2025-04-08T13:14:53Z", + "state": "excluded", + "updated_at": "2025-04-08T13:14:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAREJRXDN3RXWTBGJYWJ9SC?companyId=8089&projectId=2563870&sig=a8ec6c7ceb148e7d1f6ca103e316da3560283b14fef409bf57bf6cb3b4ba204f", + "version_timestamp": "2025-04-08T13:14:53Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153228172, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153228173, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153228168, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137364847, + "additional_page_count": 1, + "attached_at": "2025-04-08T13:11:55Z", + "attachment_id": 5351139940, + "content_type": "application/pdf", + "document_markup_layer_id": 61721095, + "filename": "23 2113 - Hydronic Piping & Valves.pdf", + "markup_updated_at": "2025-04-08T13:14:53Z", + "state": "outdated", + "updated_at": "2025-04-08T13:11:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAREJRXDN3RXWTBGJYWJ9SC?companyId=8089&projectId=2563870&sig=a8ec6c7ceb148e7d1f6ca103e316da3560283b14fef409bf57bf6cb3b4ba204f", + "version_timestamp": "2025-04-08T13:11:55Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": "2025-04-08", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153228167, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153228169, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153228170, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:46:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-13T13:35:40Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-09", + "formatted_number": "23 21 13-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27202134, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38172514, + "comment": "See attached revised response from Engineer.
", + "distributed_attachments": [ + { + "id": 5422360964, + "content_type": "application/pdf", + "filename": "23 21 13-1.0 \u2013 HW and CHW Piping Valves_ACR_H2MG_Revised-5_2.pdf", + "source_prostore_file_id": 5422360964, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3ET20AKBRYYTBKDRT6ZCTG?companyId=8089&projectId=2563870&sig=9246431f3c9c85c569c51d91a49ecd6ec1213ee70422e08b05a4b52203faacf6", + "viewable_document_id": 835581368 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 155377366, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-13T13:35:40Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hot Water and Chilled Water Piping Valves and Appurtenances (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-13T13:35:40Z" + }, + { + "id": 60192161, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153244865, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138211372, + "additional_page_count": 0, + "attached_at": "2025-04-23T21:37:51Z", + "attachment_id": 5384350955, + "content_type": "application/pdf", + "document_markup_layer_id": 62399214, + "filename": "23 21 13-2.0 \u2013Pump Suction Diffusers - HMG-ACR Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-23T21:37:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSJ9BBJRW7R5X8MYSNXA6FDB?companyId=8089&projectId=2563870&sig=7490774c2793eceaa9c025a60a230223ac5a3dda6f4d3c93ce240e4c0490155f", + "version_timestamp": "2025-04-23T21:37:51Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-15", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 153244863, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153244864, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153244859, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137797482, + "additional_page_count": 0, + "attached_at": "2025-04-15T21:36:01Z", + "attachment_id": 5367980109, + "content_type": "application/pdf", + "document_markup_layer_id": 62066457, + "filename": "232113.02-01-0 - ACR Sbtl Review - Pump Suction Diffusers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-15T21:36:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRXP2MNQHPV2XPT2CFA7ZC9N?companyId=8089&projectId=2563870&sig=c220824545d6311faa234c490eb08bade67093d93b8771be8e922a5508bcbfd9", + "version_timestamp": "2025-04-15T21:36:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-15", + "sent_date": "2025-04-08", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 153244862, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153244861, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153244860, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153244854, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137380047, + "additional_page_count": 1, + "attached_at": "2025-04-08T14:44:44Z", + "attachment_id": 5351500834, + "content_type": "application/pdf", + "document_markup_layer_id": 61732754, + "filename": "23 21 13 - 2.0 - Pump Suction Diffusers.pdf", + "markup_updated_at": "2025-04-08T15:25:54Z", + "state": "excluded", + "updated_at": "2025-04-08T15:25:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAXRGEYBBZETAASS0N6JHNK?companyId=8089&projectId=2563870&sig=8259474086cbfa721d755184ac42949b1b98757e4c94f633b8ebfd5dca2c21a0", + "version_timestamp": "2025-04-08T15:25:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": "2025-04-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153244855, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153244857, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153244850, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137374970, + "additional_page_count": 1, + "attached_at": "2025-04-08T14:44:44Z", + "attachment_id": 5351500834, + "content_type": "application/pdf", + "document_markup_layer_id": 61732754, + "filename": "23 21 13 - 2.0 - Pump Suction Diffusers.pdf", + "markup_updated_at": "2025-04-08T15:25:54Z", + "state": "outdated", + "updated_at": "2025-04-08T14:44:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAXRGEYBBZETAASS0N6JHNK?companyId=8089&projectId=2563870&sig=8259474086cbfa721d755184ac42949b1b98757e4c94f633b8ebfd5dca2c21a0", + "version_timestamp": "2025-04-08T14:44:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153244852, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153244851, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153244849, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:47:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-24T13:17:12Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-04-22", + "formatted_number": "23 21 13-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26960129, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37814821, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5384350955, + "content_type": "application/pdf", + "filename": "23 21 13-2.0 \u2013Pump Suction Diffusers - HMG-ACR Response.pdf", + "source_prostore_file_id": 5384350955, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSJ9BBJRW7R5X8MYSNXA6FDB?companyId=8089&projectId=2563870&sig=7490774c2793eceaa9c025a60a230223ac5a3dda6f4d3c93ce240e4c0490155f", + "viewable_document_id": 829045044 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153244865, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-24T13:17:12Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pump Suction Diffusers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-24T13:17:12Z" + }, + { + "id": 60192368, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142374, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142373, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142372, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142371, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142370, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142369, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142368, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:49:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 21 13-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Piping and Piping Appurtenances for Cold Water Makeup and Equipment Drains (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:34Z" + }, + { + "id": 60192400, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717098, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717097, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717096, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717095, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717094, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717093, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717092, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717091, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717090, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717089, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:50:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 21 13-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Piping and Piping Appurtenances for Cold Water Makeup and Equipment Drains (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:41Z" + }, + { + "id": 60192482, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154831386, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138750135, + "additional_page_count": 0, + "attached_at": "2025-05-05T15:50:07Z", + "attachment_id": 5406123114, + "content_type": "application/pdf", + "document_markup_layer_id": 62837392, + "filename": "23 82 39-1.0 \u2013 Unit Heaters_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-05T15:50:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGJ78E3XHT1MQ9VZY2RR0KC?companyId=8089&projectId=2563870&sig=2d0c155ba12565b79c22afd492d637b8c3b3c1df9d371b3d887ed92a66dfb3fb", + "version_timestamp": "2025-05-05T15:50:07Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 154831387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154831388, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154831381, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138637141, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:25:41Z", + "attachment_id": 5401204218, + "content_type": "application/pdf", + "document_markup_layer_id": 62747469, + "filename": "238239-01-00 - ACR Sbtl Review - Electrical Unit Heaters.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:25:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6RCP4J86PGYQAXKTT5YMAJ?companyId=8089&projectId=2563870&sig=aba4400615a3513fbceb29a0f4cab0ef5f424985b4f01b2083f6bc974a4f3dda", + "version_timestamp": "2025-05-01T20:25:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 154831385, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154831384, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154831383, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154831382, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154831378, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138338592, + "additional_page_count": 1, + "attached_at": "2025-04-25T19:52:17Z", + "attachment_id": 5389276492, + "content_type": "application/pdf", + "document_markup_layer_id": 62501191, + "filename": "23 82 39 - Electric Unit Heater Submittal.pdf", + "markup_updated_at": "2025-04-25T20:29:37Z", + "state": "excluded", + "updated_at": "2025-04-25T20:29:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQ83S5Z0TFAB9V32C4FVABB?companyId=8089&projectId=2563870&sig=0e96df45806c939c5fecb753a5fdc8c1156f623b5154e690eccaecd00306cda6", + "version_timestamp": "2025-04-25T20:29:37Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154831379, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154831380, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154831375, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138335392, + "additional_page_count": 1, + "attached_at": "2025-04-25T19:52:17Z", + "attachment_id": 5389276492, + "content_type": "application/pdf", + "document_markup_layer_id": 62501191, + "filename": "23 82 39 - Electric Unit Heater Submittal.pdf", + "markup_updated_at": "2025-04-25T20:29:37Z", + "state": "outdated", + "updated_at": "2025-04-25T19:52:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQ83S5Z0TFAB9V32C4FVABB?companyId=8089&projectId=2563870&sig=0e96df45806c939c5fecb753a5fdc8c1156f623b5154e690eccaecd00306cda6", + "version_timestamp": "2025-04-25T19:52:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154831377, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154831376, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154831374, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:51:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T14:05:39Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 82 39-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27110128, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38038016, + "comment": null, + "distributed_attachments": [ + { + "id": 5406123114, + "content_type": "application/pdf", + "filename": "23 82 39-1.0 \u2013 Unit Heaters_ACR_H2MG.pdf", + "source_prostore_file_id": 5406123114, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGJ78E3XHT1MQ9VZY2RR0KC?companyId=8089&projectId=2563870&sig=2d0c155ba12565b79c22afd492d637b8c3b3c1df9d371b3d887ed92a66dfb3fb", + "viewable_document_id": 832788712 + } + ], + "response_name": "Approved", + "submittal_approver_id": 154831386, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T14:05:39Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037825, + "current_revision_id": 44088337, + "description": "Unit Heaters", + "label": "23 82 39 - Unit Heaters", + "number": "23 82 39", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023816 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electric Unit Heaters (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T14:05:39Z" + }, + { + "id": 60192520, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716919, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716918, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716917, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716916, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716915, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716914, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716913, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716912, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716911, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716910, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:51:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 82 39-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037825, + "current_revision_id": 44088337, + "description": "Unit Heaters", + "label": "23 82 39 - Unit Heaters", + "number": "23 82 39", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023816 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electric Unit Heaters (MD)", + "type": { + "id": -1, + "name": "O&M Training", + "translated_name": "O&M Training" + }, + "updated_at": "2025-04-29T11:30:04Z" + }, + { + "id": 60192577, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153264391, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138179892, + "additional_page_count": 0, + "attached_at": "2025-04-23T16:16:35Z", + "attachment_id": 5383150381, + "content_type": "application/pdf", + "document_markup_layer_id": 62374154, + "filename": "23 82 19-1.0 - Fan Coil Units-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-23T16:16:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHPYS6Y3DM0Y0VH62HZHFCG?companyId=8089&projectId=2563870&sig=79914e5d0b7fe66a376ab5d9c137985612f66192f367d8928421af60f3e8c7a6", + "version_timestamp": "2025-04-23T16:16:35Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 153264392, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153264393, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153264387, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137797396, + "additional_page_count": 0, + "attached_at": "2025-04-15T21:35:04Z", + "attachment_id": 5367970087, + "content_type": "application/pdf", + "document_markup_layer_id": 62066394, + "filename": "238219-01-00 - ACR Sbtl Review - Fan Coil Units.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-15T21:35:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRXNW9DQQZ0B3070QJ0DVXFF?companyId=8089&projectId=2563870&sig=12a832c8e88c9fe29197b0245d51447597a9838b4d3c4568e04217a78db23eeb", + "version_timestamp": "2025-04-15T21:35:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-15", + "sent_date": "2025-04-08", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 153264390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153264389, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153264388, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153264384, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137387191, + "additional_page_count": 1, + "attached_at": "2025-04-08T16:28:05Z", + "attachment_id": 5351935008, + "content_type": "application/pdf", + "document_markup_layer_id": 61740090, + "filename": "23 82 19 - 1.0 - Fan Coil Units.pdf", + "markup_updated_at": "2025-04-08T16:30:16Z", + "state": "excluded", + "updated_at": "2025-04-08T16:30:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRB3NN7SA309Q761ENEWM4NJ?companyId=8089&projectId=2563870&sig=8a3147afc308557c02f6dd7b98000ac1ed6aecb02079843c28e5c6a1f41891d3", + "version_timestamp": "2025-04-08T16:30:16Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153264385, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153264386, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153264381, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137387011, + "additional_page_count": 1, + "attached_at": "2025-04-08T16:28:05Z", + "attachment_id": 5351935008, + "content_type": "application/pdf", + "document_markup_layer_id": 61740090, + "filename": "23 82 19 - 1.0 - Fan Coil Units.pdf", + "markup_updated_at": "2025-04-08T16:30:16Z", + "state": "outdated", + "updated_at": "2025-04-08T16:28:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRB3NN7SA309Q761ENEWM4NJ?companyId=8089&projectId=2563870&sig=8a3147afc308557c02f6dd7b98000ac1ed6aecb02079843c28e5c6a1f41891d3", + "version_timestamp": "2025-04-08T16:28:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153264383, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153264382, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153264380, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:52:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-23T16:50:08Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-04-22", + "formatted_number": "23 82 19-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26947921, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37796021, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5383150381, + "content_type": "application/pdf", + "filename": "23 82 19-1.0 - Fan Coil Units-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5383150381, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHPYS6Y3DM0Y0VH62HZHFCG?companyId=8089&projectId=2563870&sig=79914e5d0b7fe66a376ab5d9c137985612f66192f367d8928421af60f3e8c7a6", + "viewable_document_id": 828838329 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153264391, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Submit for record submittal reflecting comments from design team.
", + "sent_at": "2025-04-23T16:50:08Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037824, + "current_revision_id": 45441259, + "description": "FAN COIL UNITS", + "label": "23 82 19 - FAN COIL UNITS", + "number": "23 82 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331530 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fan Coil Units (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-12T16:13:31Z" + }, + { + "id": 60192609, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716951, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716950, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716949, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716948, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716947, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716946, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716945, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716944, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716943, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716942, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:52:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 82 19-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037824, + "current_revision_id": 45441259, + "description": "FAN COIL UNITS", + "label": "23 82 19 - FAN COIL UNITS", + "number": "23 82 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331530 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fan Coil Units (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-06-18T11:30:05Z" + }, + { + "id": 60192731, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716941, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716940, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716939, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716938, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716937, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716936, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716935, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716934, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716933, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716932, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:54:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 82 19-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037824, + "current_revision_id": 45441259, + "description": "FAN COIL UNITS", + "label": "23 82 19 - FAN COIL UNITS", + "number": "23 82 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331530 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fan Coil Units (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-06-18T11:30:06Z" + }, + { + "id": 60192830, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149717088, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717087, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717086, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717085, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149717084, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717083, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149717082, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717081, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717080, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149717079, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:56:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 21 13-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Piping and Piping Appurtenances for Cold Water Makeup and Equipment Drains (MD)", + "type": { + "id": -1, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:44Z" + }, + { + "id": 60193019, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146142382, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142381, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142380, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142379, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146142377, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142376, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146142375, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 527487, + "name": "Ed Hendrix" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T19:59:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "23 81 26-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037823, + "current_revision_id": 45441258, + "description": "AIR COOLED CONDENSING UNITS", + "label": "23 81 26 - AIR COOLED CONDENSING UNITS", + "number": "23 81 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331526 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Cooled Condensing Unit (PD)", + "type": { + "id": -1, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-15T16:02:34Z" + }, + { + "id": 60193049, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716961, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716960, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716959, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716958, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716957, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716956, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716955, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716954, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716953, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149716952, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-13T20:00:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 81 26-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037823, + "current_revision_id": 45441258, + "description": "AIR COOLED CONDENSING UNITS", + "label": "23 81 26 - AIR COOLED CONDENSING UNITS", + "number": "23 81 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331526 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782510, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.B", + "specification_section_id": null, + "submittal_ids": [ + 60190886, + 60192830, + 60189918, + 60192609, + 60190736, + 60191940, + 60189906, + 60190727, + 60182478, + 60193049, + 60191911, + 60179184, + 60192731, + 60178828, + 60178452, + 60189678, + 60189700, + 60192520, + 60182445, + 60192400, + 60191388, + 60182601, + 60189381, + 60188834, + 60179729, + 60179008, + 60183686, + 60183865 + ], + "title": "Victoria Air Closeout", + "updated_at": "2025-02-19T20:34:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Cooled Condensing Unit (Warranty)", + "type": { + "id": -1, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:44Z" + }, + { + "id": 60213897, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155414146, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139287983, + "additional_page_count": 0, + "attached_at": "2025-05-14T16:44:11Z", + "attachment_id": 5426908392, + "content_type": "application/pdf", + "document_markup_layer_id": 63270324, + "filename": "22 63 13-1.0 - Gas Piping and Appurtenances-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-14T16:44:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7TW9GDZKK3RKTG8CX17MPX?companyId=8089&projectId=2563870&sig=1b4c7f59bb5f6d4ae6d6d606a2c8a520fac67b089d9069955c0be61c5bcd4a0b", + "version_timestamp": "2025-05-14T16:44:11Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 155414147, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155414148, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155414141, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138987803, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:20:34Z", + "attachment_id": 5415220903, + "content_type": "application/pdf", + "document_markup_layer_id": 63031957, + "filename": "226313-01-00 - ACR Sbtl Review - Gas Piping & Appurtenances.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-08T17:20:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTREK1YHEE499NZ81RS7RB86?companyId=8089&projectId=2563870&sig=87eb63e305b36f5a32e135c5ca33e36d9736a42e05b1244627060650472917ea", + "version_timestamp": "2025-05-08T17:20:34Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-08", + "sent_date": "2025-05-02", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 155414145, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155414144, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155414143, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155414142, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155414139, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138691399, + "additional_page_count": 1, + "attached_at": "2025-05-02T18:16:41Z", + "attachment_id": 5403578874, + "content_type": "application/pdf", + "document_markup_layer_id": 62788944, + "filename": "22 63 13 -1.0 - Gas Piping and Appurtenances.pdf", + "markup_updated_at": "2025-05-02T18:18:28Z", + "state": "excluded", + "updated_at": "2025-05-02T18:18:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT93DBM6TGB88DZF3H1C4SRQ?companyId=8089&projectId=2563870&sig=9f7895d98375d6b72b2a2f545342daa3f193befe292cdfbb01a500bb165c32f6", + "version_timestamp": "2025-05-02T18:18:28Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155414140, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155414138, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138691235, + "additional_page_count": 1, + "attached_at": "2025-05-02T18:16:41Z", + "attachment_id": 5403578874, + "content_type": "application/pdf", + "document_markup_layer_id": 62788944, + "filename": "22 63 13 -1.0 - Gas Piping and Appurtenances.pdf", + "markup_updated_at": "2025-05-02T18:18:28Z", + "state": "outdated", + "updated_at": "2025-05-02T18:16:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT93DBM6TGB88DZF3H1C4SRQ?companyId=8089&projectId=2563870&sig=9f7895d98375d6b72b2a2f545342daa3f193befe292cdfbb01a500bb165c32f6", + "version_timestamp": "2025-05-02T18:16:41Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 155414137, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155414136, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:33:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-15T17:59:19Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": "2025-05-15", + "formatted_number": "22 63 13-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27248810, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38241968, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5426908392, + "content_type": "application/pdf", + "filename": "22 63 13-1.0 - Gas Piping and Appurtenances-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5426908392, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7TW9GDZKK3RKTG8CX17MPX?companyId=8089&projectId=2563870&sig=1b4c7f59bb5f6d4ae6d6d606a2c8a520fac67b089d9069955c0be61c5bcd4a0b", + "viewable_document_id": 836327449 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155414146, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-15T17:59:19Z" + }, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-06-10", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037793, + "current_revision_id": 45441181, + "description": "GAS PIPING AND APPURTENANCES", + "label": "22 63 13 - GAS PIPING AND APPURTENANCES", + "number": "22 63 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331434 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-13", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gas Piping and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T17:59:19Z" + }, + { + "id": 60213912, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330289, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330288, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330287, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330286, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330285, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330284, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330283, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330282, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:33:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 63 13-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037793, + "current_revision_id": 45441181, + "description": "GAS PIPING AND APPURTENANCES", + "label": "22 63 13 - GAS PIPING AND APPURTENANCES", + "number": "22 63 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331434 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gas Piping and Appurtenances (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:45Z" + }, + { + "id": 60214018, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149329906, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135928645, + "additional_page_count": 0, + "attached_at": "2025-03-11T22:12:05Z", + "attachment_id": 5293517367, + "content_type": "application/pdf", + "document_markup_layer_id": 60525727, + "filename": "22 40 00-1.0 - Plumbing Fixtures - Floor Drains and Sinks PD- HMG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-11T22:12:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP3M74BRJK09EMVXVZGT5Y36?companyId=8089&projectId=2563870&sig=f7929373df82cbb427847b20180daff14f455db49e2886cccbd569e2758d7d56", + "version_timestamp": "2025-03-11T22:12:05Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-11", + "sent_date": "2025-03-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 150215773, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329905, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-11", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329907, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-11", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329904, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135896560, + "additional_page_count": 1, + "attached_at": "2025-03-11T13:10:29Z", + "attachment_id": 5291372763, + "content_type": "application/pdf", + "document_markup_layer_id": 60485590, + "filename": "22 40 00 1.0 - Plumbing Fixtures_Floor Drains and Sinks (PD).pdf", + "markup_updated_at": "2025-03-11T17:12:11Z", + "state": "excluded", + "updated_at": "2025-03-11T17:12:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP2N7Q9M1BYMA3FVRJY5DZG7?companyId=8089&projectId=2563870&sig=d97f78a1e0f5f8cff5665d5bf7a2f08ce4591c32731ca910e252a6a81f2ed0da", + "version_timestamp": "2025-03-11T17:12:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-03-11", + "sent_date": "2025-03-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149329903, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329902, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135870623, + "additional_page_count": 1, + "attached_at": "2025-03-11T13:10:29Z", + "attachment_id": 5291372763, + "content_type": "application/pdf", + "document_markup_layer_id": 60485590, + "filename": "22 40 00 1.0 - Plumbing Fixtures_Floor Drains and Sinks (PD).pdf", + "markup_updated_at": "2025-03-11T17:12:11Z", + "state": "outdated", + "updated_at": "2025-03-11T13:10:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP2N7Q9M1BYMA3FVRJY5DZG7?companyId=8089&projectId=2563870&sig=d97f78a1e0f5f8cff5665d5bf7a2f08ce4591c32731ca910e252a6a81f2ed0da", + "version_timestamp": "2025-03-11T13:10:29Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-11", + "sent_date": "2025-03-10", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": 3, + "workflow_group_number": 0 + }, + { + "id": 149329900, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329901, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:36:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-12T12:41:04Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": "2025-03-18", + "formatted_number": "22 40 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26372868, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36950213, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5293517367, + "content_type": "application/pdf", + "filename": "22 40 00-1.0 - Plumbing Fixtures - Floor Drains and Sinks PD- HMG Response.pdf", + "source_prostore_file_id": 5293517367, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP3M74BRJK09EMVXVZGT5Y36?companyId=8089&projectId=2563870&sig=f7929373df82cbb427847b20180daff14f455db49e2886cccbd569e2758d7d56", + "viewable_document_id": 813340444 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149329906, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "MJ team,
\nSee returned submittal. Please proceed as noted and provide a response for record addressing the engineer questions.
", + "sent_at": "2025-03-12T12:41:04Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-03-28", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037790, + "current_revision_id": 45441180, + "description": "PLUMBING FIXTURES", + "label": "22 40 00 - PLUMBING FIXTURES", + "number": "22 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331433 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plumbing Fixtures: Floor Drains and Sinks (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-12T12:41:04Z" + }, + { + "id": 60214037, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154247467, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138192219, + "additional_page_count": 0, + "attached_at": "2025-04-23T18:25:51Z", + "attachment_id": 5383655611, + "content_type": "application/pdf", + "document_markup_layer_id": 62385034, + "filename": "22 40 00-2.0 - Plumbing Fixtures - MD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-23T18:25:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHYC151Z4FK40104YNGVKY6?companyId=8089&projectId=2563870&sig=650aa3a68bb2f74c3a895d600382d98a3a7a24c68433f61d1ff4b350579df7bf", + "version_timestamp": "2025-04-23T18:25:51Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 154247468, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154247469, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154247462, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138181866, + "additional_page_count": 0, + "attached_at": "2025-04-23T16:36:56Z", + "attachment_id": 5383221206, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "224000-01-00 - ACR Sbtl Review - Plumbing Fixtures.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T16:36:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHR4G2KRBBGRC80TC173WZD?companyId=8089&projectId=2563870&sig=33a6cd3abea74400cecd38aef1e8a32f5d30ee950f4373e73b9121bb5479a080", + "version_timestamp": "2025-04-23T16:36:56Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-18", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 154247466, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-18", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154247465, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-18", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154247464, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-18", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154247463, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-18", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154247460, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137982178, + "additional_page_count": 1, + "attached_at": "2025-04-18T18:47:42Z", + "attachment_id": 5375280498, + "content_type": "application/pdf", + "document_markup_layer_id": 62209405, + "filename": "22 40 00 - 2.0 - Plumbing Fixtures.pdf", + "markup_updated_at": "2025-04-18T18:49:19Z", + "state": "excluded", + "updated_at": "2025-04-18T18:49:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS53EG52XFMRB97EMTD2DCTG?companyId=8089&projectId=2563870&sig=939361cd9c1fc2f698b86ee248090881e2befcc7f671b7d93f18878f3fc5135b", + "version_timestamp": "2025-04-18T18:49:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-18", + "sent_date": "2025-04-18", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154247461, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-18", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154247459, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137982049, + "additional_page_count": 1, + "attached_at": "2025-04-18T18:47:42Z", + "attachment_id": 5375280498, + "content_type": "application/pdf", + "document_markup_layer_id": 62209405, + "filename": "22 40 00 - 2.0 - Plumbing Fixtures.pdf", + "markup_updated_at": "2025-04-18T18:49:19Z", + "state": "outdated", + "updated_at": "2025-04-18T18:47:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS53EG52XFMRB97EMTD2DCTG?companyId=8089&projectId=2563870&sig=939361cd9c1fc2f698b86ee248090881e2befcc7f671b7d93f18878f3fc5135b", + "version_timestamp": "2025-04-18T18:47:42Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-02", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-18", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 154247458, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154247457, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:37:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-23T18:37:28Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-04-30", + "formatted_number": "22 40 00-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 26950806, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37800010, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5383655611, + "content_type": "application/pdf", + "filename": "22 40 00-2.0 - Plumbing Fixtures - MD_ACR_H2MG.pdf", + "source_prostore_file_id": 5383655611, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHYC151Z4FK40104YNGVKY6?companyId=8089&projectId=2563870&sig=650aa3a68bb2f74c3a895d600382d98a3a7a24c68433f61d1ff4b350579df7bf", + "viewable_document_id": 828924975 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 154247467, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-23T18:37:28Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037790, + "current_revision_id": 45441180, + "description": "PLUMBING FIXTURES", + "label": "22 40 00 - PLUMBING FIXTURES", + "number": "22 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331433 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plumbing Fixtures (MD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-10T16:21:43Z" + }, + { + "id": 60214352, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155484737, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139529226, + "additional_page_count": 0, + "attached_at": "2025-05-19T18:32:32Z", + "attachment_id": 5436362158, + "content_type": "application/pdf", + "document_markup_layer_id": 63456697, + "filename": "22 34 36-1.0 - Gas Fired Domestic Water Heaters 200,000 Btuh-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T18:32:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMX2NG83YXWXJAA54PAVA1N?companyId=8089&projectId=2563870&sig=b3bacb98869f52c4bcfa1af2589338779f5b4f8053dc7e5f3b4edb269f4fb9dd", + "version_timestamp": "2025-05-19T18:32:31Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 155484738, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155484739, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155484732, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139149675, + "additional_page_count": 0, + "attached_at": "2025-05-12T19:50:13Z", + "attachment_id": 5421706714, + "content_type": "application/pdf", + "document_markup_layer_id": 63167559, + "filename": "223436-01-00 - ACR Sbtl Review - Gas - Domestic Water Heaters.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-12T19:50:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV30R23NVCH489W8A240ARMG?companyId=8089&projectId=2563870&sig=174693e2428048b3a5a21dd8b1d698fc772b2ebd8dc6377b3766105a7068872e", + "version_timestamp": "2025-05-12T19:50:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-05", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 155484736, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155484735, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155484734, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155484733, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155484730, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138738134, + "additional_page_count": 1, + "attached_at": "2025-05-05T14:05:41Z", + "attachment_id": 5405676858, + "content_type": "application/pdf", + "document_markup_layer_id": 62826639, + "filename": "22 34 36 - 1.0 - Gas Fired Domestic Water Heaters.pdf", + "markup_updated_at": "2025-05-05T14:08:06Z", + "state": "excluded", + "updated_at": "2025-05-05T14:08:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGC858BXYAVQ3QZ9BCKGQX0?companyId=8089&projectId=2563870&sig=f6524e8898d61604c1b62beebc1892e5b8d6d5e88de881636f1ecfb74bf9f55b", + "version_timestamp": "2025-05-05T14:08:06Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-05", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155484731, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155484728, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138737944, + "additional_page_count": 1, + "attached_at": "2025-05-05T14:05:41Z", + "attachment_id": 5405676858, + "content_type": "application/pdf", + "document_markup_layer_id": 62826639, + "filename": "22 34 36 - 1.0 - Gas Fired Domestic Water Heaters.pdf", + "markup_updated_at": "2025-05-05T14:08:06Z", + "state": "outdated", + "updated_at": "2025-05-05T14:05:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGC858BXYAVQ3QZ9BCKGQX0?companyId=8089&projectId=2563870&sig=f6524e8898d61604c1b62beebc1892e5b8d6d5e88de881636f1ecfb74bf9f55b", + "version_timestamp": "2025-05-05T14:05:41Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 155484726, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155484725, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:44:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-23T13:30:42Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-05-19", + "formatted_number": "22 34 36-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27352680, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38398517, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5436362158, + "content_type": "application/pdf", + "filename": "22 34 36-1.0 - Gas Fired Domestic Water Heaters 200,000 Btuh-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5436362158, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMX2NG83YXWXJAA54PAVA1N?companyId=8089&projectId=2563870&sig=b3bacb98869f52c4bcfa1af2589338779f5b4f8053dc7e5f3b4edb269f4fb9dd", + "viewable_document_id": 837976086 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155484737, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish per engineer comments and submit requested items. Provide lead time for material.
", + "sent_at": "2025-05-23T13:30:42Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037789, + "current_revision_id": 45441179, + "description": "GAS FIRED DOMESTIC WATER HEATERS (LESS THAN 200,00 BTUH)", + "label": "22 34 36 - GAS FIRED DOMESTIC WATER HEATERS (LESS THAN 200,00 BTUH)", + "number": "22 34 36", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331432 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gas Fired Domestic Water Heaters <200,000 Btuh (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-23T13:30:42Z" + }, + { + "id": 60214375, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330322, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330321, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330320, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330319, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330318, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330317, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330316, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330315, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:45:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 34 36-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037789, + "current_revision_id": 45441179, + "description": "GAS FIRED DOMESTIC WATER HEATERS (LESS THAN 200,00 BTUH)", + "label": "22 34 36 - GAS FIRED DOMESTIC WATER HEATERS (LESS THAN 200,00 BTUH)", + "number": "22 34 36", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331432 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gas Fired Domestic Water Heaters <200,000 Btuh (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:46Z" + }, + { + "id": 60214417, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154567051, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138532259, + "additional_page_count": 0, + "attached_at": "2025-04-30T14:46:56Z", + "attachment_id": 5397162991, + "content_type": "application/pdf", + "document_markup_layer_id": 62682020, + "filename": "22 21 23-1.0 - Mechanical Pumps - Electric Sump Pump-PD_HMG_ACR review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-30T14:46:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3JKWXB8Q78S46NH6554YMB?companyId=8089&projectId=2563870&sig=4195d01cc63672756340999e61fc0a0919de4bf48077618349ddc2d465b7611a", + "version_timestamp": "2025-04-30T14:46:56Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-30", + "sent_date": "2025-04-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 154567049, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154567050, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154567044, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138340790, + "additional_page_count": 0, + "attached_at": "2025-04-25T20:55:49Z", + "attachment_id": 5389444070, + "content_type": "application/pdf", + "document_markup_layer_id": 62504314, + "filename": "222123-01-00 - ACR Sbtl Review - Sump Pump.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-25T20:55:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQBR37RXF51A5PVE0MQ039Q?companyId=8089&projectId=2563870&sig=251d8e936171c160cdb1069180629ac9412d84da80569e14ca16ff86f42c2ff1", + "version_timestamp": "2025-04-25T20:55:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": "2025-04-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 154567048, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154567047, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154567046, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154567045, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154567043, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138182355, + "additional_page_count": 0, + "attached_at": "2025-04-23T16:42:54Z", + "attachment_id": 5383243278, + "content_type": "application/pdf", + "document_markup_layer_id": 62416311, + "filename": "22 21 23 1.0 - Mechanical Pumps_Electrical Sump Pumps (PD)_RO review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T16:42:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHREV092TQ246MKG07YHK47?companyId=8089&projectId=2563870&sig=8aba64a9fdfc7530d77035ecb3a3b5c82562882df4cd95de65f7ad1fb24e237f", + "version_timestamp": "2025-04-23T16:42:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154567042, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154567041, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138177209, + "additional_page_count": 1, + "attached_at": "2025-04-23T15:52:59Z", + "attachment_id": 5383056944, + "content_type": "application/pdf", + "document_markup_layer_id": 62375162, + "filename": "22 21 23 1.0 - Mechanical Pumps_Electrical Sump Pumps (PD).pdf", + "markup_updated_at": "2025-04-23T16:39:29Z", + "state": "excluded", + "updated_at": "2025-04-23T15:52:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHNK0KCRR2F71Q3QMP8XZ4S?companyId=8089&projectId=2563870&sig=5cb642baf03af5847368ba4f8271f76a932a87937501f7552df3725dd7964c81", + "version_timestamp": "2025-04-23T15:52:59Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-07", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-23", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 154567040, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154567039, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:46:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-05T18:10:21Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-05-02", + "formatted_number": "22 21 23-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27097105, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38017528, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5397162991, + "content_type": "application/pdf", + "filename": "22 21 23-1.0 - Mechanical Pumps - Electric Sump Pump-PD_HMG_ACR review.pdf", + "source_prostore_file_id": 5397162991, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3JKWXB8Q78S46NH6554YMB?companyId=8089&projectId=2563870&sig=4195d01cc63672756340999e61fc0a0919de4bf48077618349ddc2d465b7611a", + "viewable_document_id": 831311378 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 154567051, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Dave,
\nPlease resubmit with specified manufacturer.
", + "sent_at": "2025-05-05T18:10:21Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-06-25", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037788, + "current_revision_id": 45441175, + "description": "MECHANICAL PUMPS", + "label": "22 21 23 - MECHANICAL PUMPS", + "number": "22 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331426 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Pumps: Electric Sump Pump (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T18:10:35Z" + }, + { + "id": 60214433, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330314, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330313, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330312, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330311, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330310, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330309, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330308, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330307, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:46:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 21 23-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037788, + "current_revision_id": 45441175, + "description": "MECHANICAL PUMPS", + "label": "22 21 23 - MECHANICAL PUMPS", + "number": "22 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331426 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Submersible Pumps (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:47Z" + }, + { + "id": 60214469, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330306, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330305, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330304, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330303, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330302, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330301, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330300, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330299, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T14:47:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 21 23-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037788, + "current_revision_id": 45441175, + "description": "MECHANICAL PUMPS", + "label": "22 21 23 - MECHANICAL PUMPS", + "number": "22 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331426 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Submersible Pumps (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:47Z" + }, + { + "id": 60218967, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149329940, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329939, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329938, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329937, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329936, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329935, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329934, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329933, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:23:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "222113-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36578334, + "current_revision_id": 44783376, + "description": "Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains", + "label": "222113 - Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains", + "number": "222113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-20T20:32:46Z" + }, + { + "id": 60218991, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330331, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330330, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330329, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330328, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330327, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330326, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330325, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330324, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:24:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "222113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36578334, + "current_revision_id": 44783376, + "description": "Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains", + "label": "222113 - Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains", + "number": "222113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Piping and Piping Appurtenances for Cold Water Makeup Equipment Drains (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:48Z" + }, + { + "id": 60219076, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154968837, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138526288, + "additional_page_count": 0, + "attached_at": "2025-04-30T13:46:03Z", + "attachment_id": 5396935407, + "content_type": "application/pdf", + "document_markup_layer_id": 62680732, + "filename": "22 13 19-1.0 - Trap Primer-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-30T13:46:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3F3KMKJNKZEXEPDJSE266W?companyId=8089&projectId=2563870&sig=cb8548574a9d9955eeab5d6547c911abee06ca1e93bbdd13209dabf2edd36ea0", + "version_timestamp": "2025-04-30T13:46:03Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-30", + "sent_date": "2025-04-29", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 154968835, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154968836, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154968829, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138474134, + "additional_page_count": 0, + "attached_at": "2025-04-29T17:26:18Z", + "attachment_id": 5394864633, + "content_type": "application/pdf", + "document_markup_layer_id": 62617465, + "filename": "221319-01-00 - ACR Sbtl Review - SS Piping Specialties - Trap Primers and Trap Primer Piping.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-29T17:26:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT19A5TRVKNRB80H22K1SXYN?companyId=8089&projectId=2563870&sig=0acfe2903f3a465f3e4b5923b3d60642c78165daa8eec47fd089b72f1b8334d1", + "version_timestamp": "2025-04-29T17:26:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-29", + "sent_date": "2025-04-28", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 154968834, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154968833, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154968831, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154968830, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154968826, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138419400, + "additional_page_count": 1, + "attached_at": "2025-04-28T20:52:10Z", + "attachment_id": 5392726388, + "content_type": "application/pdf", + "document_markup_layer_id": 62571829, + "filename": "HOUSTON ES-AISD TRAP PRIMER(SPEC 22 13 19.13).pdf", + "markup_updated_at": "2025-04-28T20:54:04Z", + "state": "excluded", + "updated_at": "2025-04-28T20:54:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSZ2NHF1T379M9N2YNRPN0RB?companyId=8089&projectId=2563870&sig=824997a7d45824f85998e4228f79949cd1d708c1f1def942c316d1512cddff78", + "version_timestamp": "2025-04-28T20:54:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": "2025-04-28", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154968827, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-28", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154968824, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138419218, + "additional_page_count": 1, + "attached_at": "2025-04-28T20:52:10Z", + "attachment_id": 5392726388, + "content_type": "application/pdf", + "document_markup_layer_id": 62571829, + "filename": "HOUSTON ES-AISD TRAP PRIMER(SPEC 22 13 19.13).pdf", + "markup_updated_at": "2025-04-28T20:54:04Z", + "state": "outdated", + "updated_at": "2025-04-28T20:52:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSZ2NHF1T379M9N2YNRPN0RB?companyId=8089&projectId=2563870&sig=824997a7d45824f85998e4228f79949cd1d708c1f1def942c316d1512cddff78", + "version_timestamp": "2025-04-28T20:52:10Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-12", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-28", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 154968822, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154968820, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:26:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:44:44Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-05-06", + "formatted_number": "22 13 19-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27109437, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38037017, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5396935407, + "content_type": "application/pdf", + "filename": "22 13 19-1.0 - Trap Primer-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5396935407, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3F3KMKJNKZEXEPDJSE266W?companyId=8089&projectId=2563870&sig=cb8548574a9d9955eeab5d6547c911abee06ca1e93bbdd13209dabf2edd36ea0", + "viewable_document_id": 831275907 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 154968837, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "For record submittal required.
", + "sent_at": "2025-05-06T13:44:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037786, + "current_revision_id": 44087373, + "description": "Sanitary Waste Piping Specialties", + "label": "22 13 19 - Sanitary Waste Piping Specialties", + "number": "22 13 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011070 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Trap Primer (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T13:44:44Z" + }, + { + "id": 60219091, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156238984, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143114824, + "additional_page_count": 0, + "attached_at": "2025-07-30T00:04:55Z", + "attachment_id": 5590303081, + "content_type": "application/pdf", + "document_markup_layer_id": 66432125, + "filename": "22 13 19-2.0 - Wall Hydrant, Wall Faucet, Pedestal Hydrant-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-30T00:04:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1CAABKB6S86GA8XMTDBV246?companyId=8089&projectId=2563870&sig=73c31805c9b1b54f99c88757168eb6b6ce2c7d8cf8856d03da8bf68b79abde4c", + "version_timestamp": "2025-07-30T00:04:55Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-28", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-21", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 156238985, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-21", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156238986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-21", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156238979, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142639955, + "additional_page_count": 0, + "attached_at": "2025-07-21T14:09:40Z", + "attachment_id": 5569627542, + "content_type": "application/pdf", + "document_markup_layer_id": 66157137, + "filename": "221319-02-00 - ACR Sbtl Review - Wall Hydrant, Wall Faucet, Pedestal Hydrant.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-21T14:09:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0PN2KMMMF8CJS7RSA9GV6Q3?companyId=8089&projectId=2563870&sig=13dc79339073f41ecd8a665c065890c6c5294eb507d849db0690a8942ff15d0a", + "version_timestamp": "2025-07-21T14:09:40Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-21", + "sent_date": "2025-07-10", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 156238983, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156238982, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156238981, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156238980, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156238977, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142183820, + "additional_page_count": 1, + "attached_at": "2025-07-10T21:38:11Z", + "attachment_id": 5549506933, + "content_type": "application/pdf", + "document_markup_layer_id": 65644514, + "filename": "22 13 19 -2.0 - Wall Hydrant, Wall Faucet, Pedestal Hydrant (PD).pdf", + "markup_updated_at": "2025-07-10T21:42:00Z", + "state": "excluded", + "updated_at": "2025-07-10T21:42:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZV4CC2GM83HK46PP77932XB?companyId=8089&projectId=2563870&sig=1c02f5a2a1dc76162fd526ec9c2161b603ebdf0b48e05b5dd5dd3993831450f9", + "version_timestamp": "2025-07-10T21:42:00Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-07-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156238978, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156238976, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142183573, + "additional_page_count": 1, + "attached_at": "2025-07-10T21:38:11Z", + "attachment_id": 5549506933, + "content_type": "application/pdf", + "document_markup_layer_id": 65644514, + "filename": "22 13 19 -2.0 - Wall Hydrant, Wall Faucet, Pedestal Hydrant (PD).pdf", + "markup_updated_at": "2025-07-10T21:42:00Z", + "state": "outdated", + "updated_at": "2025-07-10T21:38:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZV4CC2GM83HK46PP77932XB?companyId=8089&projectId=2563870&sig=1c02f5a2a1dc76162fd526ec9c2161b603ebdf0b48e05b5dd5dd3993831450f9", + "version_timestamp": "2025-07-10T21:38:11Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-07-10", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 156238975, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156238974, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:26:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-31T13:13:33Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-07-28", + "formatted_number": "22 13 19-2", + "issue_date": null, + "last_distributed_submittal": { + "id": 28230909, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39701704, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5590303081, + "content_type": "application/pdf", + "filename": "22 13 19-2.0 - Wall Hydrant, Wall Faucet, Pedestal Hydrant-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5590303081, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1CAABKB6S86GA8XMTDBV246?companyId=8089&projectId=2563870&sig=73c31805c9b1b54f99c88757168eb6b6ce2c7d8cf8856d03da8bf68b79abde4c", + "viewable_document_id": 864909436 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156238984, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-31T13:13:33Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037786, + "current_revision_id": 44087373, + "description": "Sanitary Waste Piping Specialties", + "label": "22 13 19 - Sanitary Waste Piping Specialties", + "number": "22 13 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011070 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall Hydrant, Wall Faucet, Pedestal Hydrant (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-31T13:13:33Z" + }, + { + "id": 60219162, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150176846, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135717691, + "additional_page_count": 0, + "attached_at": "2025-03-07T15:10:46Z", + "attachment_id": 5285351455, + "content_type": "application/pdf", + "document_markup_layer_id": 60346976, + "filename": "22 13 16-1.0 Cast Iron Soil Waste Sanitary Drain Piping PD_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-07T15:10:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRJGJ7BAFPQX2A8RJNE74TY?companyId=8089&projectId=2563870&sig=3d667fdfefc75c247284825f0e48f9a528b0f321e6539b333bed0078deb0e5df", + "version_timestamp": "2025-03-07T15:10:46Z" + } + ], + "comment": "See consultant response for comments.", + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": "2025-03-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 150176845, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150176842, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135717507, + "additional_page_count": 0, + "attached_at": "2025-03-07T15:08:58Z", + "attachment_id": 5285346575, + "content_type": "application/pdf", + "document_markup_layer_id": 60338766, + "filename": "22 13 16-1.0 Cast Iron Soil Waste Sanitary Drain Piping PD_HMG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-07T15:08:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRJDTGC704QF1003NYKM9FN?companyId=8089&projectId=2563870&sig=93f2a0cfda8c7ba4164409b0400e710bf3cf46a9b207e7118ab58d0bde298ce9", + "version_timestamp": "2025-03-07T15:08:58Z" + } + ], + "comment": "See consultant response.", + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": "2025-03-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 149329789, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329788, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329787, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329786, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135468644, + "additional_page_count": 0, + "attached_at": "2025-03-03T21:59:49Z", + "attachment_id": 5275429130, + "content_type": "application/pdf", + "document_markup_layer_id": 60126197, + "filename": "22 13 16 1.0 - Underground_Soil, Waste and Sanitary PVC Drain, Vent Piping and Appurtenances (PD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-03T21:59:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNF0B72XNDKR0ZE6JF5EEC0A?companyId=8089&projectId=2563870&sig=b7f99a6961afd73003d4b59301a42101c692be0a432c924802108bff96165b7a", + "version_timestamp": "2025-03-03T21:59:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-03-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149329785, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329784, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135465790, + "additional_page_count": 1, + "attached_at": "2025-03-03T21:33:54Z", + "attachment_id": 5275326502, + "content_type": "application/pdf", + "document_markup_layer_id": 60123810, + "filename": "22 13 16 1.0 - Underground_Soil, Waste and Sanitary PVC Drain, Vent Piping and Appurtenances (PD).pdf", + "markup_updated_at": "2025-03-03T21:41:31Z", + "state": "excluded", + "updated_at": "2025-03-03T21:33:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNEYVN4JQWEQ6CM6NT54GJEX?companyId=8089&projectId=2563870&sig=2eece5e3063ead1832e04bd7a721ba3edd30ded5c222dfc4fc4640e201058f3b", + "version_timestamp": "2025-03-03T21:33:54Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-03-03", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -3, + "workflow_group_number": 0 + }, + { + "id": 149329782, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-20", + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329783, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-20", + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:27:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-07T15:39:25Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-03-14", + "formatted_number": "22 13 16.1-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 26316852, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36864804, + "comment": "See consultant response for comments.
", + "distributed_attachments": [ + { + "id": 5285351455, + "content_type": "application/pdf", + "filename": "22 13 16-1.0 Cast Iron Soil Waste Sanitary Drain Piping PD_HMG.pdf", + "source_prostore_file_id": 5285351455, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRJGJ7BAFPQX2A8RJNE74TY?companyId=8089&projectId=2563870&sig=3d667fdfefc75c247284825f0e48f9a528b0f321e6539b333bed0078deb0e5df", + "viewable_document_id": 811842850 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 150176846, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please resubmit and incorporate engineer comments regarding gas piping.
", + "sent_at": "2025-03-07T15:39:25Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096790, + "current_revision_id": 45441171, + "description": "SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "label": "22 13 16.1 - SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "number": "22 13 16.1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331420 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Underground: Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-21T13:31:35Z" + }, + { + "id": 60219302, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152132853, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136890537, + "additional_page_count": 0, + "attached_at": "2025-03-28T21:39:36Z", + "attachment_id": 5331827795, + "content_type": "application/pdf", + "document_markup_layer_id": 61340213, + "filename": "22 13 16-3.0 - Cast Iron Soil Waste & Sanitary Drain Piping, vent piping - PD_HMG_ACR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-28T21:39:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQFB3521MJ3D8W29VR1F8EMA?companyId=8089&projectId=2563870&sig=9d11449d9afec7240db93b2e31f250b4a08693c244e3d4e162d700fee0e86751", + "version_timestamp": "2025-03-28T21:39:36Z" + } + ], + "comment": "See attached pdf for review comments.", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 152132852, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152132848, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136888089, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:58:38Z", + "attachment_id": 5331732794, + "content_type": "application/pdf", + "document_markup_layer_id": 61319575, + "filename": "221316-03-00 - ACR Sbtl Review - Soil Waste and Vent Piping - Cast Iron.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T20:58:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF8S89RGX1JGVK7AVC61SB5?companyId=8089&projectId=2563870&sig=b7d89d4f6c98bb5cb60b137f1991f28f8890a52a71b8c460bc09d32b3d0142ce", + "version_timestamp": "2025-03-28T20:58:38Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 152132849, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152132850, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152132851, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152132846, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136671569, + "additional_page_count": 1, + "attached_at": "2025-03-25T20:43:12Z", + "attachment_id": 5323236733, + "content_type": "application/pdf", + "document_markup_layer_id": 61142265, + "filename": "22 13 16 -3.0 - Cast Iron Soil Waste and Sanitary Drain Piping Vent and Appurtenances (PD).pdf", + "markup_updated_at": "2025-03-25T20:48:58Z", + "state": "excluded", + "updated_at": "2025-03-25T20:48:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7GPJG4WF6MDFAD0VWC2FK4?companyId=8089&projectId=2563870&sig=ffd4c1efaae01e75be7e5022946abe57c4071996894a9d6fed69bf88e8ef40f9", + "version_timestamp": "2025-03-25T20:48:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152132847, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152132845, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136670992, + "additional_page_count": 1, + "attached_at": "2025-03-25T20:43:12Z", + "attachment_id": 5323236733, + "content_type": "application/pdf", + "document_markup_layer_id": 61142265, + "filename": "22 13 16 -3.0 - Cast Iron Soil Waste and Sanitary Drain Piping Vent and Appurtenances (PD).pdf", + "markup_updated_at": "2025-03-25T20:48:58Z", + "state": "outdated", + "updated_at": "2025-03-25T20:43:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7GPJG4WF6MDFAD0VWC2FK4?companyId=8089&projectId=2563870&sig=ffd4c1efaae01e75be7e5022946abe57c4071996894a9d6fed69bf88e8ef40f9", + "version_timestamp": "2025-03-25T20:43:12Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 152132844, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152132843, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:31:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-31T13:39:01Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-04-04", + "formatted_number": "22 13 16-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 26617936, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37310476, + "comment": "See attached pdf for review comments.
", + "distributed_attachments": [ + { + "id": 5331827795, + "content_type": "application/pdf", + "filename": "22 13 16-3.0 - Cast Iron Soil Waste & Sanitary Drain Piping, vent piping - PD_HMG_ACR.pdf", + "source_prostore_file_id": 5331827795, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQFB3521MJ3D8W29VR1F8EMA?companyId=8089&projectId=2563870&sig=9d11449d9afec7240db93b2e31f250b4a08693c244e3d4e162d700fee0e86751", + "viewable_document_id": 820124497 + } + ], + "response_name": "Approved", + "submittal_approver_id": 152132853, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-31T13:39:01Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-03-26", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037785, + "current_revision_id": 45441170, + "description": "CAST IRON SOIL WASTE AND SANITARY DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "label": "22 13 16 - CAST IRON SOIL WASTE AND SANITARY DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "number": "22 13 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331417 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Cast Iron Soil Waste and Sanitary Drain Piping Vent and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-31T13:39:01Z" + }, + { + "id": 60219393, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155489853, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139511302, + "additional_page_count": 0, + "attached_at": "2025-05-19T15:29:57Z", + "attachment_id": 5435692888, + "content_type": "application/pdf", + "document_markup_layer_id": 63440127, + "filename": "22 11 23-1.0 - Domestic Water Pressure Boosting System - HMG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T15:29:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMJMFJXQCF8S7EYCGV7Z8DH?companyId=8089&projectId=2563870&sig=69f5bfdbdbd2c60ac73f3a0bec46be768b026c4c3fb2efad625c9211efaf4a51", + "version_timestamp": "2025-05-19T15:29:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 155489851, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155489852, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155489846, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139149268, + "additional_page_count": 0, + "attached_at": "2025-05-12T19:47:25Z", + "attachment_id": 5421693410, + "content_type": "application/pdf", + "document_markup_layer_id": 63166778, + "filename": "221123-01-00 - ACR Sbtl Review - Domestic Water Pressure Boosting System.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-12T19:47:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV30JC8SG6BHBDQCWZ7GJTBK?companyId=8089&projectId=2563870&sig=163c0b8165a10e0bcc328e8c03fe01237808c2c522e9ecb140810d1162a98267", + "version_timestamp": "2025-05-12T19:47:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-05", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 155489850, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155489849, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155489848, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155489847, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155489844, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138768716, + "additional_page_count": 1, + "attached_at": "2025-05-05T15:02:07Z", + "attachment_id": 5405918093, + "content_type": "application/pdf", + "document_markup_layer_id": 62851940, + "filename": "22 11 23 - 1.0 - Domestic Water Pressure Boosting System.pdf", + "markup_updated_at": "2025-05-05T18:36:19Z", + "state": "excluded", + "updated_at": "2025-05-05T18:36:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGFFQHW86XGJFYDMMA8XJPZ?companyId=8089&projectId=2563870&sig=3163c008c374cd2553f39c503e98504baad9e13b57a46fc98f50542efa003c2a", + "version_timestamp": "2025-05-05T18:36:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155489845, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155489843, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138744218, + "additional_page_count": 1, + "attached_at": "2025-05-05T15:02:07Z", + "attachment_id": 5405918093, + "content_type": "application/pdf", + "document_markup_layer_id": 62851940, + "filename": "22 11 23 - 1.0 - Domestic Water Pressure Boosting System.pdf", + "markup_updated_at": "2025-05-05T18:36:19Z", + "state": "outdated", + "updated_at": "2025-05-05T15:02:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGFFQHW86XGJFYDMMA8XJPZ?companyId=8089&projectId=2563870&sig=3163c008c374cd2553f39c503e98504baad9e13b57a46fc98f50542efa003c2a", + "version_timestamp": "2025-05-05T15:02:07Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 155489842, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155489841, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:33:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-23T13:27:12Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-05-19", + "formatted_number": "22 11 23-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27352599, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38398410, + "comment": "", + "distributed_attachments": [ + { + "id": 5435692888, + "content_type": "application/pdf", + "filename": "22 11 23-1.0 - Domestic Water Pressure Boosting System - HMG Response.pdf", + "source_prostore_file_id": 5435692888, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMJMFJXQCF8S7EYCGV7Z8DH?companyId=8089&projectId=2563870&sig=69f5bfdbdbd2c60ac73f3a0bec46be768b026c4c3fb2efad625c9211efaf4a51", + "viewable_document_id": 837853512 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155489853, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please confirm engineer comments and furnish as noted. Provide lead time.
", + "sent_at": "2025-05-23T13:27:12Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037784, + "current_revision_id": 45441169, + "description": "DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "label": "22 11 23 - DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "number": "22 11 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331414 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Pressure Boosting System (VFD) (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-23T13:27:12Z" + }, + { + "id": 60219420, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149329883, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329882, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329881, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329880, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329879, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329878, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329877, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329876, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:34:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 11 23-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037784, + "current_revision_id": 45441169, + "description": "DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "label": "22 11 23 - DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "number": "22 11 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331414 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Pressure Boosting System (VFD) (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-02-20T20:32:43Z" + }, + { + "id": 60219458, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330378, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330377, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330376, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330375, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330374, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330373, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330372, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330371, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:35:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 11 23-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037784, + "current_revision_id": 45441169, + "description": "DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "label": "22 11 23 - DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "number": "22 11 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331414 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Pressure Boosting System (VFD) (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:31:50Z" + }, + { + "id": 60219497, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330339, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330338, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330337, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330336, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330335, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330334, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330333, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330332, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:36:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 11 23-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037784, + "current_revision_id": 45441169, + "description": "DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "label": "22 11 23 - DOMESTIC WATER PRESSURE BOOSTING SYSTEM (VFD)", + "number": "22 11 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331414 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Pressure Boosting System (VFD) (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:51Z" + }, + { + "id": 60219543, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163555781, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143994752, + "additional_page_count": 0, + "attached_at": "2025-08-15T22:55:53Z", + "attachment_id": 5629452513, + "content_type": "application/pdf", + "document_markup_layer_id": 67199349, + "filename": "22 11 16-1.0 - Domestic Water Piping and Appurtenances-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-15T22:55:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2QZ375ARZAH4K1B1R4GB010?companyId=8089&projectId=2563870&sig=63f7f5999b70988dd9d8f490a323781fd8e79007c8db4ce6cb2fc8860c53fae0", + "version_timestamp": "2025-08-15T22:55:53Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-15", + "sent_date": "2025-08-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 163555776, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143756255, + "additional_page_count": 0, + "attached_at": "2025-08-12T15:02:36Z", + "attachment_id": 5619073029, + "content_type": "application/pdf", + "document_markup_layer_id": 66958207, + "filename": "221116-01-00 - ACR Sbtl Review - Domestic Water Piping & Appurtenances.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-08-12T15:02:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FCVB0B9ER6W2GS5A6ED1CC?companyId=8089&projectId=2563870&sig=1ae5006bf2e5cd37b69db6bc0c5be08fee55845d18d2412559be8e005b0c7ea9", + "version_timestamp": "2025-08-12T15:02:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-08-11", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 163555780, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163555779, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163555778, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163555777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163555774, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143669964, + "additional_page_count": 1, + "attached_at": "2025-08-08T20:56:25Z", + "attachment_id": 5613948539, + "content_type": "application/pdf", + "document_markup_layer_id": 66855458, + "filename": "22 11 16 - 1.0 - Domestic Water Piping and Appurtenances + Substitution Request (PD).pdf", + "markup_updated_at": "2025-08-11T13:11:17Z", + "state": "excluded", + "updated_at": "2025-08-11T13:11:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K25QGQGMDWJKSPJ6T84X6C3V?companyId=8089&projectId=2563870&sig=1141fc7e788197421942dd58229b2c5da85247c60ff57770b9847fe0bf0b7f8c", + "version_timestamp": "2025-08-11T13:11:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-15", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-08-11", + "sent_date": "2025-08-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 163555775, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163555773, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143644689, + "additional_page_count": 1, + "attached_at": "2025-08-08T20:56:25Z", + "attachment_id": 5613948539, + "content_type": "application/pdf", + "document_markup_layer_id": 66855458, + "filename": "22 11 16 - 1.0 - Domestic Water Piping and Appurtenances + Substitution Request (PD).pdf", + "markup_updated_at": "2025-08-11T13:11:17Z", + "state": "outdated", + "updated_at": "2025-08-08T20:56:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K25QGQGMDWJKSPJ6T84X6C3V?companyId=8089&projectId=2563870&sig=1141fc7e788197421942dd58229b2c5da85247c60ff57770b9847fe0bf0b7f8c", + "version_timestamp": "2025-08-08T20:56:25Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-08", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 163555772, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163555771, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:37:30Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-18T13:38:50Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-08-19", + "formatted_number": "22 11 16-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28444081, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 40018970, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5629452513, + "content_type": "application/pdf", + "filename": "22 11 16-1.0 - Domestic Water Piping and Appurtenances-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5629452513, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2QZ375ARZAH4K1B1R4GB010?companyId=8089&projectId=2563870&sig=63f7f5999b70988dd9d8f490a323781fd8e79007c8db4ce6cb2fc8860c53fae0", + "viewable_document_id": 871590831 + } + ], + "response_name": "Approved", + "submittal_approver_id": 163555781, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-18T13:38:50Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037783, + "current_revision_id": 45441168, + "description": "DOMESTIC WATER PIPING AND APPURTENANCES", + "label": "22 11 16 - DOMESTIC WATER PIPING AND APPURTENANCES", + "number": "22 11 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331412 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Piping and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-18T13:38:50Z" + }, + { + "id": 60219556, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330394, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330393, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330392, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330391, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330389, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330388, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330387, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:37:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 11 16-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037783, + "current_revision_id": 45441168, + "description": "DOMESTIC WATER PIPING AND APPURTENANCES", + "label": "22 11 16 - DOMESTIC WATER PIPING AND APPURTENANCES", + "number": "22 11 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331412 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Domestic Water Piping and Appurtenances (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:51Z" + }, + { + "id": 60219694, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149329972, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329971, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329970, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329969, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329968, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329967, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329966, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329965, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:40:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 07 19-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037781, + "current_revision_id": 44088309, + "description": "Plumbing Piping Insulation", + "label": "22 07 19 - Plumbing Piping Insulation", + "number": "22 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023634 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High Temperature Piping Insulation (Fiberglass) (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-20T20:32:47Z" + }, + { + "id": 60219708, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330402, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330401, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330400, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330399, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330398, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330397, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330396, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330395, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:41:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 07 19-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037781, + "current_revision_id": 44088309, + "description": "Plumbing Piping Insulation", + "label": "22 07 19 - Plumbing Piping Insulation", + "number": "22 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023634 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High Temperature Piping Insulation (Fiberglass) (MD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-06T12:31:52Z" + }, + { + "id": 60219759, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149329987, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329985, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149329984, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329982, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149329980, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329979, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149329977, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:42:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 07 19-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037781, + "current_revision_id": 44088309, + "description": "Plumbing Piping Insulation", + "label": "22 07 19 - Plumbing Piping Insulation", + "number": "22 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023634 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low Temperature Piping Insulation (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-20T20:32:47Z" + }, + { + "id": 60219782, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330409, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330406, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330405, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330404, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330403, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:42:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 07 19-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037781, + "current_revision_id": 44088309, + "description": "Plumbing Piping Insulation", + "label": "22 07 19 - Plumbing Piping Insulation", + "number": "22 07 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023634 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low Temperature Piping Insulation (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:31:52Z" + }, + { + "id": 60219918, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149330419, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330417, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149330416, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330415, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149330414, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330413, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149330412, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T16:46:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "22 01 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2026-04-15", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037780, + "current_revision_id": 45441165, + "description": "PLUMBING COMMISSIONING", + "label": "22 01 00 - PLUMBING COMMISSIONING", + "number": "22 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331405 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783480, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.B", + "specification_section_id": null, + "submittal_ids": [ + 60213912, + 60219782, + 60214375, + 60219458, + 60219556, + 60219708, + 60219091, + 60219918, + 60219497, + 60218991, + 60214433, + 60214469 + ], + "title": "MJ Mechanical (Plumbing) Closeout", + "updated_at": "2025-02-20T20:33:42Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Plumbing Systems (Certificates)", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-06T12:31:53Z" + }, + { + "id": 60221916, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153645723, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153645722, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153645721, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153645720, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137706794, + "additional_page_count": 0, + "attached_at": "2025-04-14T19:49:34Z", + "attachment_id": 5364611268, + "content_type": "application/pdf", + "document_markup_layer_id": 61995936, + "filename": "26 05 19-1.0 - Metal Clad MC - Copper Conductor PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-14T19:49:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRTXJBFPDBESVNC1YB90G48T?companyId=8089&projectId=2563870&sig=d6d7dc3e32deb348734c793018e592c634ebc38e31b961045a1ab51dcb2e564c", + "version_timestamp": "2025-04-14T19:49:34Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-04-14", + "sent_date": "2025-04-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 153645719, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153645718, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153645715, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137616115, + "additional_page_count": 1, + "attached_at": "2025-04-11T18:18:11Z", + "attachment_id": 5360963645, + "content_type": "application/pdf", + "document_markup_layer_id": 61924476, + "filename": "26 05 19.02 - 1.0 - MC Wire.pdf", + "markup_updated_at": "2025-04-11T18:28:00Z", + "state": "excluded", + "updated_at": "2025-04-11T18:28:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRK158ZXBD19EWEVQ3SX7SF4?companyId=8089&projectId=2563870&sig=033141c1f2978bd74b7986094f95d117c64cc588b93f7beab7e4cb288a8b2bce", + "version_timestamp": "2025-04-11T18:28:00Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153645716, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153645717, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153645712, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137615121, + "additional_page_count": 1, + "attached_at": "2025-04-11T18:18:11Z", + "attachment_id": 5360963645, + "content_type": "application/pdf", + "document_markup_layer_id": 61924476, + "filename": "26 05 19.02 - 1.0 - MC Wire.pdf", + "markup_updated_at": "2025-04-11T18:28:00Z", + "state": "outdated", + "updated_at": "2025-04-11T18:18:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRK158ZXBD19EWEVQ3SX7SF4?companyId=8089&projectId=2563870&sig=033141c1f2978bd74b7986094f95d117c64cc588b93f7beab7e4cb288a8b2bce", + "version_timestamp": "2025-04-11T18:18:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153645714, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153645713, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:12:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-15T15:07:25Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-21", + "formatted_number": "26 05 19-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26834859, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37632448, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5364611268, + "content_type": "application/pdf", + "filename": "26 05 19-1.0 - Metal Clad MC - Copper Conductor PD_H2MG.pdf", + "source_prostore_file_id": 5364611268, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRTXJBFPDBESVNC1YB90G48T?companyId=8089&projectId=2563870&sig=d6d7dc3e32deb348734c793018e592c634ebc38e31b961045a1ab51dcb2e564c", + "viewable_document_id": 825688777 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 153645720, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-04-15T15:07:25Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037831, + "current_revision_id": 45441277, + "description": "INSULATED CONDUCTORS", + "label": "26 05 19 - INSULATED CONDUCTORS", + "number": "26 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331554 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Clad (MC) - Copper Conductor (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-10T13:25:01Z" + }, + { + "id": 60222061, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609345, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609344, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609343, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609342, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609341, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609340, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:15:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 05 19-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037831, + "current_revision_id": 45441277, + "description": "INSULATED CONDUCTORS", + "label": "26 05 19 - INSULATED CONDUCTORS", + "number": "26 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331554 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Insulated Conductors (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-31T20:26:49Z" + }, + { + "id": 60222154, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354506, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354505, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354504, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354503, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354502, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354501, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354500, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354499, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354498, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354497, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354496, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:17:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 01 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038303, + "current_revision_id": 45441272, + "description": "COMMISSIONING OF ELECTRICAL SYSTEMS", + "label": "26 01 00 - COMMISSIONING OF ELECTRICAL SYSTEMS", + "number": "26 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331550 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Commissioning of Electrical Systems (Certificates)", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-27T19:33:27Z" + }, + { + "id": 60222763, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153644476, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-21", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153644475, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-21", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153644474, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-21", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153644473, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138030162, + "additional_page_count": 0, + "attached_at": "2025-04-21T16:42:45Z", + "attachment_id": 5377388206, + "content_type": "application/pdf", + "document_markup_layer_id": 62250820, + "filename": "26 00 02-1.0 - Firestopping PD_H2MG Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-21T16:42:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCKNMZWC5KS5A5P0942K5M6?companyId=8089&projectId=2563870&sig=73c20ba52cbd65814b604b5aa5ce6164ce5d00884f289dfb9056a590a2f3848f", + "version_timestamp": "2025-04-21T16:42:45Z" + } + ], + "comment": "See attached pdf for submittal review.", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-21", + "sent_date": "2025-04-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 154172878, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153644472, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153644471, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153644468, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137614529, + "additional_page_count": 1, + "attached_at": "2025-04-11T18:09:45Z", + "attachment_id": 5360929303, + "content_type": "application/pdf", + "document_markup_layer_id": 61923311, + "filename": "26 00 02 - 1.0 - Firestopping.pdf", + "markup_updated_at": "2025-04-11T18:12:10Z", + "state": "excluded", + "updated_at": "2025-04-11T18:12:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRK0P0T4YJCES62TZTJ1KTW9?companyId=8089&projectId=2563870&sig=1b1f837b8db5dbb3767021125532089dcf05db154de3189212720b8482d08f23", + "version_timestamp": "2025-04-11T18:12:10Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153644469, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153644470, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153644465, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137614346, + "additional_page_count": 1, + "attached_at": "2025-04-11T18:09:45Z", + "attachment_id": 5360929303, + "content_type": "application/pdf", + "document_markup_layer_id": 61923311, + "filename": "26 00 02 - 1.0 - Firestopping.pdf", + "markup_updated_at": "2025-04-11T18:12:10Z", + "state": "outdated", + "updated_at": "2025-04-11T18:09:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRK0P0T4YJCES62TZTJ1KTW9?companyId=8089&projectId=2563870&sig=1b1f837b8db5dbb3767021125532089dcf05db154de3189212720b8482d08f23", + "version_timestamp": "2025-04-11T18:09:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153644467, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153644466, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:26:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-24T17:43:39Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-28", + "formatted_number": "26 00 02-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26967587, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37825073, + "comment": "See attached pdf for submittal review.
", + "distributed_attachments": [ + { + "id": 5377388206, + "content_type": "application/pdf", + "filename": "26 00 02-1.0 - Firestopping PD_H2MG Review.pdf", + "source_prostore_file_id": 5377388206, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCKNMZWC5KS5A5P0942K5M6?companyId=8089&projectId=2563870&sig=73c20ba52cbd65814b604b5aa5ce6164ce5d00884f289dfb9056a590a2f3848f", + "viewable_document_id": 827861038 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153644473, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-04-24T17:43:39Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037828, + "current_revision_id": 45441267, + "description": "FIRESTOPPING", + "label": "26 00 02 - FIRESTOPPING", + "number": "26 00 02", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331544 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Firestopping (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-24T17:43:39Z" + }, + { + "id": 60222772, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609339, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609338, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609337, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609336, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609335, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609334, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:27:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 00 02-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037828, + "current_revision_id": 45441267, + "description": "FIRESTOPPING", + "label": "26 00 02 - FIRESTOPPING", + "number": "26 00 02", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331544 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Firestopping (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:49Z" + }, + { + "id": 60222876, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609333, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609332, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609331, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609330, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609329, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609328, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:29:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "260535-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36580118, + "current_revision_id": 44785653, + "description": "Dual Channel Metal Raceway", + "label": "260535 - Dual Channel Metal Raceway", + "number": "260535", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dual Channel Metal Raceway (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:48Z" + }, + { + "id": 60223028, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354356, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354355, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354354, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354353, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354352, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354351, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354350, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354349, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354348, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354347, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354346, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:32:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "260535-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36580118, + "current_revision_id": 44785653, + "description": "Dual Channel Metal Raceway", + "label": "260535 - Dual Channel Metal Raceway", + "number": "260535", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dual Channel Metal Raceway (As-Builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-27T19:33:20Z" + }, + { + "id": 60223185, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151637638, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136754124, + "additional_page_count": 0, + "attached_at": "2025-03-26T22:03:23Z", + "attachment_id": 5326476238, + "content_type": "application/pdf", + "document_markup_layer_id": 61210408, + "filename": "26 05 33.01-2.0 - Electrical Boxes - UG Pull Box - PD_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-26T22:03:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQA7NMXXZKKJ9DC3K1D0WG9D?companyId=8089&projectId=2563870&sig=a4f26600b89f0fb5dbc8f6a10d88eae0a203a91f2e705940f2593b1ca78e17df", + "version_timestamp": "2025-03-26T22:03:23Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-26", + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 151637637, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151637636, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151637632, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136370991, + "additional_page_count": 0, + "attached_at": "2025-03-19T20:50:43Z", + "attachment_id": 5311206513, + "content_type": "application/pdf", + "document_markup_layer_id": 60887024, + "filename": "26 05 33.01 - 1.0 - UG Pullbox.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-19T20:50:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR2R9MP9H9P2ZGH0NVH4DFF?companyId=8089&projectId=2563870&sig=55ec2c0143d31ae2fedd461a0724424785a8b2d93878fd8fbbdd9d79bb76c331", + "version_timestamp": "2025-03-19T20:50:43Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 151637635, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151637634, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151637628, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136366389, + "additional_page_count": 0, + "attached_at": "2025-03-19T20:05:11Z", + "attachment_id": 5311035784, + "content_type": "application/pdf", + "document_markup_layer_id": 60887021, + "filename": "26 05 33.01 -1-UG Pullbox.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-19T20:05:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR04X6TJ0RY9Y3Z9GVJFZXK?companyId=8089&projectId=2563870&sig=fe0bf55e75a672819b9c1d926bdde9b2fcc2d31fb20e89c148e2e23eac6c16ca", + "version_timestamp": "2025-03-19T20:05:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 151637631, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 151637630, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:35:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-02", + "formatted_number": "26 05 33.01-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37079167, + "current_revision_id": 45419348, + "description": "ELECTRICAL BOXES", + "label": "26 05 33.01 - ELECTRICAL BOXES", + "number": "26 05 33.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804902965 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Underground Pull Box (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-08T17:14:41Z" + }, + { + "id": 60223224, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609355, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135971829, + "additional_page_count": 0, + "attached_at": "2025-03-12T16:53:15Z", + "attachment_id": 5295254324, + "content_type": "application/pdf", + "document_markup_layer_id": 60549048, + "filename": "26 05 33-6.0 - Raceways_UG Raceways - PD_HMG Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-12T16:53:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5MC3TM4XK15KJNRSR7DC6K?companyId=8089&projectId=2563870&sig=d784312b9ce2e2f31bcbf8d26f9f64609638cea93fea7228c9a9ebb521630834", + "version_timestamp": "2025-03-12T16:53:15Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-02-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 5, + "workflow_group_number": 2 + }, + { + "id": 149213045, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148429966, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-19", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609354, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-19", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609353, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134871768, + "additional_page_count": 0, + "attached_at": "2025-02-19T20:21:46Z", + "attachment_id": 5250526129, + "content_type": "application/pdf", + "document_markup_layer_id": 59624650, + "filename": "26 05 33 - 1.0 - Underground Raceways.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-19T20:21:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMFXYZDQN583E3XBXKNW6GHK?companyId=8089&projectId=2563870&sig=647b26304796ce49dd15247be3b002eb664e4c2855a480b9a3b7606ada57c0d0", + "version_timestamp": "2025-02-19T20:21:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-19", + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 148429965, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148970576, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134728321, + "additional_page_count": 0, + "attached_at": "2025-02-17T20:44:12Z", + "attachment_id": 5244998146, + "content_type": "application/pdf", + "document_markup_layer_id": 59623922, + "filename": "#26 05 33-1-Underground Raceways.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-17T20:44:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMATAXVD3JJGCHHCZ315ZH27?companyId=8089&projectId=2563870&sig=47c724a1f5aa85fb66a69485e4814b9a30adc82a53f85712372042befb32ed2a", + "version_timestamp": "2025-02-17T20:44:12Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -6, + "workflow_group_number": 0 + }, + { + "id": 148970577, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13084111, + "name": "Jackson West" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:36:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-12T17:26:56Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "26 05 33-6", + "issue_date": null, + "last_distributed_submittal": { + "id": 26381363, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36961862, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5295254324, + "content_type": "application/pdf", + "filename": "26 05 33-6.0 - Raceways_UG Raceways - PD_HMG Review.pdf", + "source_prostore_file_id": 5295254324, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5MC3TM4XK15KJNRSR7DC6K?companyId=8089&projectId=2563870&sig=d784312b9ce2e2f31bcbf8d26f9f64609638cea93fea7228c9a9ebb521630834", + "viewable_document_id": 813664272 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147609355, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "Please see returned submittal and submit as needed for other products.
", + "sent_at": "2025-03-12T17:26:56Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037834, + "current_revision_id": 45419371, + "description": "RACEWAYS", + "label": "26 05 33 - RACEWAYS", + "number": "26 05 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804902971 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Underground Raceways (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-12T17:26:56Z" + }, + { + "id": 60223272, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151635257, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137078781, + "additional_page_count": 0, + "attached_at": "2025-04-02T15:07:15Z", + "attachment_id": 5339595237, + "content_type": "application/pdf", + "document_markup_layer_id": 61484235, + "filename": "26 05 29-1.0 - In-Slab Conduit Supplemental - PD_HMG_ACR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-02T15:07:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQVGMV255X45FBPK8332YPEN?companyId=8089&projectId=2563870&sig=20caba2049ef63c65973aa25078addddf0c6eb35b49cf7b50066176667ce9651", + "version_timestamp": "2025-04-02T15:07:15Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-02", + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 151635255, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 151635249, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136680171, + "additional_page_count": 0, + "attached_at": "2025-03-25T22:46:36Z", + "attachment_id": 5323568130, + "content_type": "application/pdf", + "document_markup_layer_id": 61148497, + "filename": "260529-01-00 - ACR Sbtl Review - In-Slab Conduit.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T22:46:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7QRP8555CD2F3SVB9RHCT1?companyId=8089&projectId=2563870&sig=22932e75816c27c663673c97900d2e4fdd0762ef5e8ce6a0d5d2a1f7d3c9ba79", + "version_timestamp": "2025-03-25T22:46:36Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 151635243, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136364635, + "additional_page_count": 1, + "attached_at": "2025-03-19T19:52:41Z", + "attachment_id": 5310979478, + "content_type": "application/pdf", + "document_markup_layer_id": 60882279, + "filename": "26 05 29 - 1.0 - In-Slab Conduit Supplemental.pdf", + "markup_updated_at": "2025-03-19T19:56:06Z", + "state": "excluded", + "updated_at": "2025-03-19T19:56:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQZDN2WC4K5Y1M75BB5FFF6?companyId=8089&projectId=2563870&sig=2be2b227fa89ba60f06fab4996dfc0966d9938bc517279d8368cebda11c09351", + "version_timestamp": "2025-03-19T19:56:06Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 151635253, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151635251, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151635247, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151635245, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151635240, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136364366, + "additional_page_count": 0, + "attached_at": "2025-03-19T19:50:21Z", + "attachment_id": 5310969015, + "content_type": "application/pdf", + "document_markup_layer_id": 60882078, + "filename": "26 05 29 - 1.0 - In-Slab Conduit Supplemental.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-19T19:50:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQZ93GZ3E9T2KDHGBST3CC7?companyId=8089&projectId=2563870&sig=f88306412b8211899ff80e1f50e3fd221ec23d635892cd1451d72b27b275fe12", + "version_timestamp": "2025-03-19T19:50:21Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 151635241, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 151635242, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:37:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-02T21:05:26Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-01", + "formatted_number": "26 05 29-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26672924, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37389009, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5339595237, + "content_type": "application/pdf", + "filename": "26 05 29-1.0 - In-Slab Conduit Supplemental - PD_HMG_ACR.pdf", + "source_prostore_file_id": 5339595237, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQVGMV255X45FBPK8332YPEN?companyId=8089&projectId=2563870&sig=20caba2049ef63c65973aa25078addddf0c6eb35b49cf7b50066176667ce9651", + "viewable_document_id": 821444992 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 151635257, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-04-02T21:05:26Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037833, + "current_revision_id": 45441282, + "description": "METAL FRAMING AND SUPPORTS", + "label": "26 05 29 - METAL FRAMING AND SUPPORTS", + "number": "26 05 29", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331564 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "In-slab Conduit Supplemental (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-02T21:05:26Z" + }, + { + "id": 60223372, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161330780, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "See response in previous workflow step.", + "days_to_respond": 5, + "due_date": "2025-07-25", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-07-18", + "sent_date": "2025-07-18", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 161330778, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142581648, + "additional_page_count": 0, + "attached_at": "2025-07-18T15:47:56Z", + "attachment_id": 5566734314, + "content_type": "application/pdf", + "document_markup_layer_id": 65984833, + "filename": "26 05 26-1.0 - Grounding-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-18T15:47:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0F3GCW5GD9P3VBJJR1WKYY8?companyId=8089&projectId=2563870&sig=aed6b0a7e35fed9d4430374b9cdb67f3b3af8b3e93a5e3ced0ae920f7f454859", + "version_timestamp": "2025-07-18T15:47:56Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-07-18", + "sent_date": "2025-07-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 161330779, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161330777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161330774, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142304838, + "additional_page_count": 1, + "attached_at": "2025-07-14T18:05:01Z", + "attachment_id": 5554985774, + "content_type": "application/pdf", + "document_markup_layer_id": 65746170, + "filename": "26 05 26 -1.0 - Grounding (PD).pdf", + "markup_updated_at": "2025-07-14T18:11:54Z", + "state": "excluded", + "updated_at": "2025-07-14T18:11:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K051RYHY73JNCE23RHVHA3CE?companyId=8089&projectId=2563870&sig=cad46f128bd069b457721780ab83df83dc25df4d846226c1414a52c25bcf5d8d", + "version_timestamp": "2025-07-14T18:11:54Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 161330775, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161330776, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161330771, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142304106, + "additional_page_count": 1, + "attached_at": "2025-07-14T18:05:01Z", + "attachment_id": 5554985774, + "content_type": "application/pdf", + "document_markup_layer_id": 65746170, + "filename": "26 05 26 -1.0 - Grounding (PD).pdf", + "markup_updated_at": "2025-07-14T18:11:54Z", + "state": "outdated", + "updated_at": "2025-07-14T18:05:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K051RYHY73JNCE23RHVHA3CE?companyId=8089&projectId=2563870&sig=cad46f128bd069b457721780ab83df83dc25df4d846226c1414a52c25bcf5d8d", + "version_timestamp": "2025-07-14T18:05:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 161330773, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 161330772, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T17:39:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-23T14:21:07Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-07-25", + "formatted_number": "26 05 26-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 28127311, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549487, + "comment": "See response in previous workflow step.
", + "distributed_attachments": [], + "response_name": "Rejected", + "submittal_approver_id": 161330780, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-07-23T14:21:07Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037832, + "current_revision_id": 45441280, + "description": "GROUNDING", + "label": "26 05 26 - GROUNDING", + "number": "26 05 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331562 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Grounding (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-23T14:21:07Z" + }, + { + "id": 60231648, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T19:51:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "28 31 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037830, + "current_revision_id": 45441341, + "description": "FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "label": "28 31 00 - FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "number": "28 31 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331644 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Alarm System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:04Z" + }, + { + "id": 60231701, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T19:52:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "28 31 00-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037830, + "current_revision_id": 45441341, + "description": "FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "label": "28 31 00 - FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "number": "28 31 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331644 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Alarm System (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:05Z" + }, + { + "id": 60231729, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T19:53:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "28 31 00-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037830, + "current_revision_id": 45441341, + "description": "FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "label": "28 31 00 - FIRE ALARM SYSTEM (NEW CONSTRUCTION)", + "number": "28 31 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331644 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786934, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.B", + "specification_section_id": null, + "submittal_ids": [ + 60231729, + 60303355, + 60303037, + 60302481 + ], + "title": "Division 028 Closeout", + "updated_at": "2025-01-16T19:29:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Alarm System (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-01-16T19:30:18Z" + }, + { + "id": 60232109, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158334371, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141127334, + "additional_page_count": 0, + "attached_at": "2025-06-19T13:30:07Z", + "attachment_id": 5503124302, + "content_type": "application/pdf", + "document_markup_layer_id": 64775106, + "filename": "26 09 43-1.0 - Digital-network Lighting controls-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-19T13:30:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4637RN8V7SPF3R5XN6YPQD?companyId=8089&projectId=2563870&sig=19be3ecc68b9566368091292a4cb8fd15f0e19720b9cd521c09bd2750ba6c6a1", + "version_timestamp": "2025-06-19T13:30:07Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 3, + "workflow_group_number": 3 + }, + { + "id": 158334368, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140584468, + "additional_page_count": 0, + "attached_at": "2025-06-09T20:08:06Z", + "attachment_id": 5480242908, + "content_type": "application/pdf", + "document_markup_layer_id": 64326584, + "filename": "260943-01-00 - ACR Sbtl Review - Lighting Controls.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-09T20:08:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXB4WNKA0EPJWWV6NYZWC4ZQ?companyId=8089&projectId=2563870&sig=de88c47bc5f1bed37a14e40a481efe9e3c590b5d6af1aa774dab913cde73a23a", + "version_timestamp": "2025-06-09T20:08:06Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-20", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-06", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 158334370, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-06", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158334369, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158334365, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140501826, + "additional_page_count": 1, + "attached_at": "2025-06-06T15:54:58Z", + "attachment_id": 5475970802, + "content_type": "application/pdf", + "document_markup_layer_id": 64253606, + "filename": "26 09 43 -1.0 - Lighting Contorls.pdf", + "markup_updated_at": "2025-06-06T18:51:46Z", + "state": "excluded", + "updated_at": "2025-06-06T18:51:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX2Z78V60GZM9JPHF7ZXTDYP?companyId=8089&projectId=2563870&sig=78199d78f0bf1b7d291948f235ff4e6edeffe0a5a4cbad95daaaa4d40a0add36", + "version_timestamp": "2025-06-06T18:51:46Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-06-06", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-06", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 158334366, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158334367, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158334362, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140484444, + "additional_page_count": 1, + "attached_at": "2025-06-06T15:54:58Z", + "attachment_id": 5475970802, + "content_type": "application/pdf", + "document_markup_layer_id": 64253606, + "filename": "26 09 43 -1.0 - Lighting Contorls.pdf", + "markup_updated_at": "2025-06-06T18:51:46Z", + "state": "outdated", + "updated_at": "2025-06-06T15:54:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX2Z78V60GZM9JPHF7ZXTDYP?companyId=8089&projectId=2563870&sig=78199d78f0bf1b7d291948f235ff4e6edeffe0a5a4cbad95daaaa4d40a0add36", + "version_timestamp": "2025-06-06T15:54:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-06", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158334364, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158334363, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:00:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-23T17:30:37Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "26 09 43-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27738829, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38975284, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5503124302, + "content_type": "application/pdf", + "filename": "26 09 43-1.0 - Digital-network Lighting controls-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5503124302, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4637RN8V7SPF3R5XN6YPQD?companyId=8089&projectId=2563870&sig=19be3ecc68b9566368091292a4cb8fd15f0e19720b9cd521c09bd2750ba6c6a1", + "viewable_document_id": 849717088 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158334371, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-06-23T17:30:37Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital-network Lighting controls (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-23T17:30:37Z" + }, + { + "id": 60232131, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609381, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609380, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609379, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609378, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609377, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609376, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:01:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 09 43-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital-network Lighting controls (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:51Z" + }, + { + "id": 60232152, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354476, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354475, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354474, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354473, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354471, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354470, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354469, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354468, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354467, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354465, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354464, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:02:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 09 43-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital-network Lighting controls (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-27T19:33:26Z" + }, + { + "id": 60232178, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354461, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354460, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354459, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354458, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354457, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354456, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354455, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354454, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354453, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354452, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354451, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:02:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 09 43-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital-network Lighting controls (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-27T19:33:25Z" + }, + { + "id": 60232208, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354450, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354449, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354448, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354447, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354446, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354445, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354444, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354443, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354442, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354441, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354440, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:03:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 09 43-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital-network Lighting controls (As-builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-27T19:33:24Z" + }, + { + "id": 60232280, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609375, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609374, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609373, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609372, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609371, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609370, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:04:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 09 43-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital Lighting Controls (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-31T20:26:50Z" + }, + { + "id": 60232324, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609386, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609385, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609384, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609383, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609382, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:05:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 09 43-7", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital Lighting Controls (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:51Z" + }, + { + "id": 60232338, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354435, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354434, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354433, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354432, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354431, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354430, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354429, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354428, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354427, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354426, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354425, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:05:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 09 43-8", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital Lighting Controls (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-27T19:33:24Z" + }, + { + "id": 60232356, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354424, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354423, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354422, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354421, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354420, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354419, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354417, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354416, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354415, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354414, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:06:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 09 43-9", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037837, + "current_revision_id": 44089132, + "description": "Network Lighting Controls", + "label": "26 09 43 - Network Lighting Controls", + "number": "26 09 43", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035775 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Digital Lighting Controls (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-27T19:33:23Z" + }, + { + "id": 60232437, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354490, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354489, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354488, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354487, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354486, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354485, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354484, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354483, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354482, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354481, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354480, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:08:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 08 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037836, + "current_revision_id": 45441286, + "description": "ELECTRICAL TESTING", + "label": "26 08 00 - ELECTRICAL TESTING", + "number": "26 08 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331567 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electrical Testing (Reports)", + "type": { + "id": 157596, + "name": "Record Submittal - Reports", + "translated_name": "Record Submittal - Reports" + }, + "updated_at": "2025-03-27T19:33:26Z" + }, + { + "id": 60232568, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609393, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609392, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609391, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609389, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609388, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:10:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 05 53-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037835, + "current_revision_id": 45441284, + "description": "ELECTRICAL IDENTIFICATION", + "label": "26 05 53 - ELECTRICAL IDENTIFICATION", + "number": "26 05 53", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331565 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electrical Identification (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-31T20:26:51Z" + }, + { + "id": 60233441, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609434, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609433, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609432, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609431, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609430, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609429, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:16:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 28 13-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037842, + "current_revision_id": 45441311, + "description": "OVERCURRENT PROTECTIVE DEVICES", + "label": "26 28 13 - OVERCURRENT PROTECTIVE DEVICES", + "number": "26 28 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331584 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overcurrent Protective Devices (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-31T20:26:53Z" + }, + { + "id": 60233459, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609404, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609403, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609402, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609401, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609400, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:16:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 28 13-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037842, + "current_revision_id": 45441311, + "description": "OVERCURRENT PROTECTIVE DEVICES", + "label": "26 28 13 - OVERCURRENT PROTECTIVE DEVICES", + "number": "26 28 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331584 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overcurrent Protective Devices (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:52Z" + }, + { + "id": 60233484, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354411, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354409, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354406, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354404, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354403, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354402, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354401, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:17:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 28 13-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037842, + "current_revision_id": 45441311, + "description": "OVERCURRENT PROTECTIVE DEVICES", + "label": "26 28 13 - OVERCURRENT PROTECTIVE DEVICES", + "number": "26 28 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331584 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Overcurrent Protective Devices (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-27T19:33:23Z" + }, + { + "id": 60233756, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153978046, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138171848, + "additional_page_count": 0, + "attached_at": "2025-04-23T15:04:32Z", + "attachment_id": 5382851587, + "content_type": "application/pdf", + "document_markup_layer_id": 62367318, + "filename": "26 27 26-1.0 - EPO Switch and Cord Reel-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-23T15:04:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHJS2T0XYPWZD98KAXP9YDG?companyId=8089&projectId=2563870&sig=8cc6c9c4c6015b0b350139c5b1b718ecb6827c6f79e69c1951dd760d7c96cc1e", + "version_timestamp": "2025-04-23T15:04:32Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 153978048, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153978047, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153978042, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138159849, + "additional_page_count": 0, + "attached_at": "2025-04-23T13:15:13Z", + "attachment_id": 5382435495, + "content_type": "application/pdf", + "document_markup_layer_id": 62356887, + "filename": "262726-01-00 - ACR Sbtl Review - EPO Switch and Cord Reel.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T13:15:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHCK70YA9W59WP7KTNZKNKV?companyId=8089&projectId=2563870&sig=7992683b9abc296ce2292d1227f318a7041a3055f6f3a483ded929c24ffc9496", + "version_timestamp": "2025-04-23T13:15:13Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-16", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 153978045, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153978044, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153978043, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153978039, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137824263, + "additional_page_count": 1, + "attached_at": "2025-04-16T14:02:35Z", + "attachment_id": 5369146584, + "content_type": "application/pdf", + "document_markup_layer_id": 62088869, + "filename": "26 27 26 - 1.0 - EPO Switch and Cord Reel.pdf", + "markup_updated_at": "2025-04-16T14:05:05Z", + "state": "excluded", + "updated_at": "2025-04-16T14:05:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZEH4686HX7F8TQYXJSD2N9?companyId=8089&projectId=2563870&sig=d939d48113edd6ccb07a6ff3d07fd9bc2cab9bbe5e573ed2934b95df593f6ba0", + "version_timestamp": "2025-04-16T14:05:05Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": "2025-04-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153978040, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153978041, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153978036, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137824005, + "additional_page_count": 1, + "attached_at": "2025-04-16T14:02:35Z", + "attachment_id": 5369146584, + "content_type": "application/pdf", + "document_markup_layer_id": 62088869, + "filename": "26 27 26 - 1.0 - EPO Switch and Cord Reel.pdf", + "markup_updated_at": "2025-04-16T14:05:05Z", + "state": "outdated", + "updated_at": "2025-04-16T14:02:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZEH4686HX7F8TQYXJSD2N9?companyId=8089&projectId=2563870&sig=d939d48113edd6ccb07a6ff3d07fd9bc2cab9bbe5e573ed2934b95df593f6ba0", + "version_timestamp": "2025-04-16T14:02:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153978038, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153978037, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:22:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-23T15:21:18Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-30", + "formatted_number": "26 27 26-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 26945488, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37792557, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5382851587, + "content_type": "application/pdf", + "filename": "26 27 26-1.0 - EPO Switch and Cord Reel-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5382851587, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHJS2T0XYPWZD98KAXP9YDG?companyId=8089&projectId=2563870&sig=8cc6c9c4c6015b0b350139c5b1b718ecb6827c6f79e69c1951dd760d7c96cc1e", + "viewable_document_id": 828787040 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153978046, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "EPO switch was rejected. A resubmittal will be required
", + "sent_at": "2025-04-23T15:21:18Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037841, + "current_revision_id": 45441309, + "description": "WIRING DEVICES", + "label": "26 27 26 - WIRING DEVICES", + "number": "26 27 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331580 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "EPO Switch and Cord Reel (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-23T15:21:18Z" + }, + { + "id": 60233877, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153973414, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138534706, + "additional_page_count": 0, + "attached_at": "2025-04-30T15:09:24Z", + "attachment_id": 5397259213, + "content_type": "application/pdf", + "document_markup_layer_id": 62668171, + "filename": "26 24 16-1.0 - Panelboards-PD_HMG_ACR Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-30T15:09:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3KWFTY5H7Q40CQQJ0X7S31?companyId=8089&projectId=2563870&sig=59026f7714e0d79fd0e9e1de557115033c746086ce42864217f12207ac3e4994", + "version_timestamp": "2025-04-30T15:09:24Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-04-30", + "sent_date": "2025-04-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 153973412, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 153973413, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153973408, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138159700, + "additional_page_count": 0, + "attached_at": "2025-04-23T13:13:29Z", + "attachment_id": 5382430065, + "content_type": "application/pdf", + "document_markup_layer_id": 62356717, + "filename": "262416-01-00 - ACR Sbtl Review - Panelboards.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T13:13:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHCFYJTWXFD6F107E4RMMFC?companyId=8089&projectId=2563870&sig=b53f5b94d555ce99bdda0b1783c3abd740e2974931eee2736ca92ed45391d210", + "version_timestamp": "2025-04-23T13:13:29Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-16", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 153973411, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153973410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153973409, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153973405, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137823673, + "additional_page_count": 1, + "attached_at": "2025-04-16T13:57:13Z", + "attachment_id": 5369111858, + "content_type": "application/pdf", + "document_markup_layer_id": 62088345, + "filename": "26 24 16 - 1.0 - Panelboards.pdf", + "markup_updated_at": "2025-04-16T13:59:39Z", + "state": "excluded", + "updated_at": "2025-04-16T13:59:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZE3K8DMYPB4SC2DVW2VF3W?companyId=8089&projectId=2563870&sig=1026d8ee6524e721a67ca4d0c420a18b27b4f7ef2471c0af33d4f28366b149a5", + "version_timestamp": "2025-04-16T13:59:39Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": "2025-04-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153973406, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153973407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153973399, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137823446, + "additional_page_count": 1, + "attached_at": "2025-04-16T13:57:13Z", + "attachment_id": 5369111858, + "content_type": "application/pdf", + "document_markup_layer_id": 62088345, + "filename": "26 24 16 - 1.0 - Panelboards.pdf", + "markup_updated_at": "2025-04-16T13:59:39Z", + "state": "outdated", + "updated_at": "2025-04-16T13:57:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZE3K8DMYPB4SC2DVW2VF3W?companyId=8089&projectId=2563870&sig=1026d8ee6524e721a67ca4d0c420a18b27b4f7ef2471c0af33d4f28366b149a5", + "version_timestamp": "2025-04-16T13:57:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153973403, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153973401, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:24:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:36:19Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-30", + "formatted_number": "26 24 16-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27109132, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38036575, + "comment": null, + "distributed_attachments": [ + { + "id": 5397259213, + "content_type": "application/pdf", + "filename": "26 24 16-1.0 - Panelboards-PD_HMG_ACR Review.pdf", + "source_prostore_file_id": 5397259213, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3KWFTY5H7Q40CQQJ0X7S31?companyId=8089&projectId=2563870&sig=59026f7714e0d79fd0e9e1de557115033c746086ce42864217f12207ac3e4994", + "viewable_document_id": 831325757 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 153973414, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-06T13:36:19Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037840, + "current_revision_id": 45441308, + "description": "PANELBOARDS", + "label": "26 24 16 - PANELBOARDS", + "number": "26 24 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331578 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Panelboards (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-19T16:10:50Z" + }, + { + "id": 60234261, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156232069, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139522168, + "additional_page_count": 0, + "attached_at": "2025-05-19T17:24:20Z", + "attachment_id": 5436108502, + "content_type": "application/pdf", + "document_markup_layer_id": 63446388, + "filename": "26 24 00-1.0 - Elevator Power Module Switches-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T17:24:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMS5NE55YP6BHPGSQQKN3P1?companyId=8089&projectId=2563870&sig=b2564fd959f2000a53bd12363363748c070dcf8431887c1ff47d4508be8f1fd2", + "version_timestamp": "2025-05-19T17:24:20Z" + } + ], + "comment": "Please see attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 156232071, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156232070, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156232065, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329997, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:16:11Z", + "attachment_id": 5428422210, + "content_type": "application/pdf", + "document_markup_layer_id": 63296971, + "filename": "262726-01-00 - ACR Sbtl Review - Elevator Power Module Switches.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:16:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8R6JV6B8J8SJ5NKKAPJ7K2?companyId=8089&projectId=2563870&sig=7a103877c7b80ff12fbf8517e66a54b4584406020b31a736e02abd9a7be7f8ed", + "version_timestamp": "2025-05-15T01:16:11Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-13", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 156232068, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156232067, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156232066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156232062, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139195843, + "additional_page_count": 1, + "attached_at": "2025-05-13T14:26:32Z", + "attachment_id": 5423364965, + "content_type": "application/pdf", + "document_markup_layer_id": 63193884, + "filename": "26 24 00 - 1.0 - Elevator Module Switches (PD).pdf", + "markup_updated_at": "2025-05-13T14:38:05Z", + "state": "excluded", + "updated_at": "2025-05-13T14:38:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV50M77M78WYRDBJ3E3E1Y10?companyId=8089&projectId=2563870&sig=0915b2e180eb7310e615a2a9ddba881f876e003f6ad875b3b7e6deff7bf9eef0", + "version_timestamp": "2025-05-13T14:38:05Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-13", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156232063, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156232064, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156232059, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139194672, + "additional_page_count": 1, + "attached_at": "2025-05-13T14:26:32Z", + "attachment_id": 5423364965, + "content_type": "application/pdf", + "document_markup_layer_id": 63193884, + "filename": "26 24 00 - 1.0 - Elevator Module Switches (PD).pdf", + "markup_updated_at": "2025-05-13T14:38:05Z", + "state": "outdated", + "updated_at": "2025-05-13T14:26:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV50M77M78WYRDBJ3E3E1Y10?companyId=8089&projectId=2563870&sig=0915b2e180eb7310e615a2a9ddba881f876e003f6ad875b3b7e6deff7bf9eef0", + "version_timestamp": "2025-05-13T14:26:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156232061, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156232060, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:32:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-23T13:24:44Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "26 24 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27352538, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38398323, + "comment": "Please see attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5436108502, + "content_type": "application/pdf", + "filename": "26 24 00-1.0 - Elevator Power Module Switches-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5436108502, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMS5NE55YP6BHPGSQQKN3P1?companyId=8089&projectId=2563870&sig=b2564fd959f2000a53bd12363363748c070dcf8431887c1ff47d4508be8f1fd2", + "viewable_document_id": 837930571 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156232069, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "Please procure based on engineer comments and confirm. Provide lead time for material.
", + "sent_at": "2025-05-23T13:24:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037838, + "current_revision_id": 44088353, + "description": "Switchboards and Panelboards", + "label": "26 24 00 - Switchboards and Panelboards", + "number": "26 24 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023918 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Elevator Power Module Switches (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-23T13:24:44Z" + }, + { + "id": 60234279, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609420, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609416, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609414, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609413, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609412, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T20:33:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 24 00-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037838, + "current_revision_id": 44088353, + "description": "Switchboards and Panelboards", + "label": "26 24 00 - Switchboards and Panelboards", + "number": "26 24 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023918 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Elevator Power Module Switches (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:52Z" + }, + { + "id": 60237170, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153531171, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137719983, + "additional_page_count": 0, + "attached_at": "2025-04-14T22:14:02Z", + "attachment_id": 5365070012, + "content_type": "application/pdf", + "document_markup_layer_id": 62024052, + "filename": "26 22 13-1.0 - High Efficiency Dry-type Distribution Txfrs - PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-14T22:14:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRV5J422QVWCKBRK4FHZGXVX?companyId=8089&projectId=2563870&sig=2d22a4a5e19dc14331014f3466236c6ed57c025104bfceaa4d589729a441fc13", + "version_timestamp": "2025-04-14T22:14:02Z" + } + ], + "comment": "The attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-04-14", + "sent_date": "2025-04-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 153531173, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153531172, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153531170, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137717697, + "additional_page_count": 0, + "attached_at": "2025-04-14T21:40:50Z", + "attachment_id": 5364672413, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "26 22 13-1.0 - High Efficiency Dry-type Distribution Txfrs - PD_H2MG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-14T21:40:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRTYE8P0ZYWFVBKPDFRPYHWM?companyId=8089&projectId=2563870&sig=243885acf40234594aa1fffe6e98cfcf3646565b525234a09ca88b2d1d7219a0", + "version_timestamp": "2025-04-14T21:40:50Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-04-14", + "sent_date": "2025-04-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 153531169, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153531168, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153531165, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137605001, + "additional_page_count": 1, + "attached_at": "2025-04-11T16:25:13Z", + "attachment_id": 5360581225, + "content_type": "application/pdf", + "document_markup_layer_id": 61916136, + "filename": "26 22 13 - 1.0 - Transformers.pdf", + "markup_updated_at": "2025-04-11T16:26:42Z", + "state": "excluded", + "updated_at": "2025-04-11T16:26:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRJTPNZ096G6YPBSTQNMY4DS?companyId=8089&projectId=2563870&sig=3beb60f3b6a5deea2fca55fe05cf8fb99548702703c8da97f999abf37803a1bb", + "version_timestamp": "2025-04-11T16:26:42Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": "2025-04-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153531166, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153531167, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153531162, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137604900, + "additional_page_count": 1, + "attached_at": "2025-04-11T16:25:13Z", + "attachment_id": 5360581225, + "content_type": "application/pdf", + "document_markup_layer_id": 61916136, + "filename": "26 22 13 - 1.0 - Transformers.pdf", + "markup_updated_at": "2025-04-11T16:26:42Z", + "state": "outdated", + "updated_at": "2025-04-11T16:25:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRJTPNZ096G6YPBSTQNMY4DS?companyId=8089&projectId=2563870&sig=3beb60f3b6a5deea2fca55fe05cf8fb99548702703c8da97f999abf37803a1bb", + "version_timestamp": "2025-04-11T16:25:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": "2025-04-11", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153531164, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153531163, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:26:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-15T15:06:16Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + } + ], + "drawing_ids": [], + "due_date": "2025-04-21", + "formatted_number": "262213-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 26834822, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37632399, + "comment": null, + "distributed_attachments": [ + { + "id": 5365070012, + "content_type": "application/pdf", + "filename": "26 22 13-1.0 - High Efficiency Dry-type Distribution Txfrs - PD_H2MG.pdf", + "source_prostore_file_id": 5365070012, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRV5J422QVWCKBRK4FHZGXVX?companyId=8089&projectId=2563870&sig=2d22a4a5e19dc14331014f3466236c6ed57c025104bfceaa4d589729a441fc13", + "viewable_document_id": 825766134 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 153531171, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-04-15T15:06:16Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36586613, + "current_revision_id": 44794161, + "description": "High Efficiency Dry-type Distribution XFMR", + "label": "262213 - High Efficiency Dry-type Distribution XFMR", + "number": "262213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low volt Transformers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-29T13:40:06Z" + }, + { + "id": 60237212, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354345, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354344, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354343, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354342, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354341, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354340, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354339, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354338, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354337, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354336, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354335, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:27:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "262213-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36586613, + "current_revision_id": 44794161, + "description": "High Efficiency Dry-type Distribution XFMR", + "label": "262213 - High Efficiency Dry-type Distribution XFMR", + "number": "262213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "High Efficiency Dry-type Distribution Transformers (As-builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-27T19:33:19Z" + }, + { + "id": 60237296, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156109518, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139350173, + "additional_page_count": 0, + "attached_at": "2025-05-15T14:10:21Z", + "attachment_id": 5429314513, + "content_type": "application/pdf", + "document_markup_layer_id": 63313623, + "filename": "26 43 13-1.0 \u2013 Surge Protection Devices-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-15T14:10:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA4FQHNQG53REQZY99K38YS?companyId=8089&projectId=2563870&sig=bb3509003d0f8066114eeed6447c7e8a961cfeb2feb6ac794e16d7fb8a0c301a", + "version_timestamp": "2025-05-15T14:10:21Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 156109520, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156109519, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156109514, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329883, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:10:57Z", + "attachment_id": 5428417869, + "content_type": "application/pdf", + "document_markup_layer_id": 63296873, + "filename": "264313-01-00 - ACR Sbtl Review - Surge Protective Devices.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:10:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8QWV3J0GPVFQ3YQH28SF5R?companyId=8089&projectId=2563870&sig=241bd704f50c8ef8bee09c82fdfbecba6e1397b0983bff687b835fdfa786fe9b", + "version_timestamp": "2025-05-15T01:10:57Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-12", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 156109517, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156109516, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156109515, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156109511, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139115659, + "additional_page_count": 1, + "attached_at": "2025-05-12T15:00:15Z", + "attachment_id": 5420516571, + "content_type": "application/pdf", + "document_markup_layer_id": 63130877, + "filename": "26 43 13 - 1.0 - Surge Protection Devices (PD).pdf", + "markup_updated_at": "2025-05-12T15:02:15Z", + "state": "excluded", + "updated_at": "2025-05-12T15:02:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2G4E1AZNTQVVQF4PTKH6SY?companyId=8089&projectId=2563870&sig=a0a6a7305c53477e57896f40f5a5532950336a725871f60f263ee75cd75914b3", + "version_timestamp": "2025-05-12T15:02:15Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156109512, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156109513, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156109508, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139115448, + "additional_page_count": 1, + "attached_at": "2025-05-12T15:00:15Z", + "attachment_id": 5420516571, + "content_type": "application/pdf", + "document_markup_layer_id": 63130877, + "filename": "26 43 13 - 1.0 - Surge Protection Devices (PD).pdf", + "markup_updated_at": "2025-05-12T15:02:15Z", + "state": "outdated", + "updated_at": "2025-05-12T15:00:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2G4E1AZNTQVVQF4PTKH6SY?companyId=8089&projectId=2563870&sig=a0a6a7305c53477e57896f40f5a5532950336a725871f60f263ee75cd75914b3", + "version_timestamp": "2025-05-12T15:00:15Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-12", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156109509, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156109510, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:29:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-19T14:21:33Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "26 43 13-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27277726, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38285934, + "comment": null, + "distributed_attachments": [ + { + "id": 5429314513, + "content_type": "application/pdf", + "filename": "26 43 13-1.0 \u2013 Surge Protection Devices-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5429314513, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA4FQHNQG53REQZY99K38YS?companyId=8089&projectId=2563870&sig=bb3509003d0f8066114eeed6447c7e8a961cfeb2feb6ac794e16d7fb8a0c301a", + "viewable_document_id": 836703896 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156109518, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-19T14:21:33Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037846, + "current_revision_id": 45441317, + "description": "SURGE PROTECTIVE DEVICES", + "label": "26 43 13 - SURGE PROTECTIVE DEVICES", + "number": "26 43 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331594 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Surge Protection Devices (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-19T14:21:33Z" + }, + { + "id": 60237320, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354367, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354366, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354365, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354364, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354363, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354362, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354361, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354360, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354359, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354358, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354357, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:30:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 43 13-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037846, + "current_revision_id": 45441317, + "description": "SURGE PROTECTIVE DEVICES", + "label": "26 43 13 - SURGE PROTECTIVE DEVICES", + "number": "26 43 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331594 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Surge Protection Devices (As-builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-27T19:33:20Z" + }, + { + "id": 60237388, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609315, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609314, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609313, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609312, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609311, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609310, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:32:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 41 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037845, + "current_revision_id": 44086687, + "description": "LIGHTNING PROTECTION SYSTEMS", + "label": "26 41 00 - LIGHTNING PROTECTION SYSTEMS", + "number": "26 41 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993487 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Lightning Protection Systems (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-01-31T20:26:48Z" + }, + { + "id": 60237396, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147609449, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10857518, + "name": "Abhit Borkar" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609447, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609446, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609444, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147609443, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147609441, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:32:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "26 41 00-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037845, + "current_revision_id": 44086687, + "description": "LIGHTNING PROTECTION SYSTEMS", + "label": "26 41 00 - LIGHTNING PROTECTION SYSTEMS", + "number": "26 41 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993487 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Lightning Protection Systems (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-01-31T20:26:53Z" + }, + { + "id": 60237405, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354389, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354388, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354386, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354385, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354384, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354383, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354382, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354381, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354380, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354379, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:32:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 41 00-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037845, + "current_revision_id": 44086687, + "description": "LIGHTNING PROTECTION SYSTEMS", + "label": "26 41 00 - LIGHTNING PROTECTION SYSTEMS", + "number": "26 41 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993487 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Lighting Protection Systems (As-builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-27T19:33:22Z" + }, + { + "id": 60237582, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354378, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354377, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354376, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354375, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354374, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354373, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354372, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354371, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354370, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354369, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354368, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:33:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 41 00-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037845, + "current_revision_id": 44086687, + "description": "LIGHTNING PROTECTION SYSTEMS", + "label": "26 41 00 - LIGHTNING PROTECTION SYSTEMS", + "number": "26 41 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993487 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Lighting Protection Systems (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-27T19:33:21Z" + }, + { + "id": 60237999, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156185745, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139352836, + "additional_page_count": 0, + "attached_at": "2025-05-15T14:34:20Z", + "attachment_id": 5429416946, + "content_type": "application/pdf", + "document_markup_layer_id": 63316638, + "filename": "26 29 13-1.0 - Motor Starters 600 Volts and Below-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-15T14:34:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA5TVP6ARXHP37WEMRRNT1V?companyId=8089&projectId=2563870&sig=e1ab24018e6b87f9bf9f81949da9a701b448ef8a7521803c79686dc963dd1b8d", + "version_timestamp": "2025-05-15T14:34:20Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 156185747, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156185746, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156185741, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329961, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:15:36Z", + "attachment_id": 5428421807, + "content_type": "application/pdf", + "document_markup_layer_id": 63296960, + "filename": "262913-01-00 - ACR Sbtl Review - Enclosed Controllers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:15:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8R5908YMH4D2RRJA67VNHF?companyId=8089&projectId=2563870&sig=3bf6f2e1e19e084dc4806a2da7e922dfba21e408275d6ed6e6ccca815cb7dae1", + "version_timestamp": "2025-05-15T01:15:36Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-12", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 156185738, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139164954, + "additional_page_count": 0, + "attached_at": "2025-05-12T22:00:13Z", + "attachment_id": 5422152590, + "content_type": "application/pdf", + "document_markup_layer_id": 63168524, + "filename": "TE Houston Contactor and Starters.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-12T22:00:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV385HHKYD6V7FH1YNF6RG5D?companyId=8089&projectId=2563870&sig=c226ca524c5c67df54f9405f2a623f1479a62a436685fdba4570550580d1f9df", + "version_timestamp": "2025-05-12T22:00:13Z" + }, + { + "id": 139160650, + "additional_page_count": 1, + "attached_at": "2025-05-12T21:18:29Z", + "attachment_id": 5422034787, + "content_type": "application/pdf", + "document_markup_layer_id": 63166005, + "filename": "26 29 13 -1.0 - Motor Sytarter 600V and Below.pdf", + "markup_updated_at": "2025-05-12T21:19:16Z", + "state": "excluded", + "updated_at": "2025-05-12T21:19:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV35SY0JBDYM0P87F8KHBV6M?companyId=8089&projectId=2563870&sig=c536c1cab8189468a20933c1b5e8af83b48b3fe4317431eb63d6ce0ecb1ebc2c", + "version_timestamp": "2025-05-12T21:19:16Z" + } + ], + "comment": "Updated spec comply for the motor starters.\u00a0", + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156185744, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156185743, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156185742, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156185739, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156185740, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156185735, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139160586, + "additional_page_count": 1, + "attached_at": "2025-05-12T21:18:29Z", + "attachment_id": 5422034787, + "content_type": "application/pdf", + "document_markup_layer_id": 63166005, + "filename": "26 29 13 -1.0 - Motor Sytarter 600V and Below.pdf", + "markup_updated_at": "2025-05-12T21:19:16Z", + "state": "outdated", + "updated_at": "2025-05-12T21:18:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV35SY0JBDYM0P87F8KHBV6M?companyId=8089&projectId=2563870&sig=c536c1cab8189468a20933c1b5e8af83b48b3fe4317431eb63d6ce0ecb1ebc2c", + "version_timestamp": "2025-05-12T21:18:29Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156185737, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156185736, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:36:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-19T13:50:36Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "26 29 13-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27276746, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38284531, + "comment": null, + "distributed_attachments": [ + { + "id": 5429416946, + "content_type": "application/pdf", + "filename": "26 29 13-1.0 - Motor Starters 600 Volts and Below-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5429416946, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA5TVP6ARXHP37WEMRRNT1V?companyId=8089&projectId=2563870&sig=e1ab24018e6b87f9bf9f81949da9a701b448ef8a7521803c79686dc963dd1b8d", + "viewable_document_id": 836720443 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156185745, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-19T13:50:36Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037844, + "current_revision_id": 44088359, + "description": "Enclosed Controllers", + "label": "26 29 13 - Enclosed Controllers", + "number": "26 29 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023971 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Motor Starters 600 Volts and Below (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-19T13:50:36Z" + }, + { + "id": 60238369, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152354400, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354399, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152354398, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354397, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354396, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152354395, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354394, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354393, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152354392, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354391, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152354390, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:38:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-04-24", + "formatted_number": "26 29 13-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037844, + "current_revision_id": 44088359, + "description": "Enclosed Controllers", + "label": "26 29 13 - Enclosed Controllers", + "number": "26 29 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023971 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783815, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "026.B", + "specification_section_id": null, + "submittal_ids": [ + 60237405, + 60238369, + 60237320, + 60237212, + 60233484, + 60237582, + 60232178, + 60232208, + 60222154, + 60232356, + 60232437, + 60232152, + 60223028, + 60232338 + ], + "title": "Tumlinson Closeout", + "updated_at": "2025-02-19T20:25:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Motor Starters 600 Volts and Below (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-27T19:33:22Z" + }, + { + "id": 60238395, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153648701, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138535427, + "additional_page_count": 0, + "attached_at": "2025-04-30T15:15:49Z", + "attachment_id": 5397288228, + "content_type": "application/pdf", + "document_markup_layer_id": 62668487, + "filename": "26 28 16-1.0 - Enclosed Switches-PD_HMG_ACR Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-30T15:15:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3M8SB0AXFCHPZR3T1Q7Y7A?companyId=8089&projectId=2563870&sig=ad936c20351e6b4e0811627c87695fda70e9e9b867966b77f5f6d63b3c69ddfb", + "version_timestamp": "2025-04-30T15:15:49Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-30", + "sent_date": "2025-04-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 153648700, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153648699, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153648696, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138159793, + "additional_page_count": 0, + "attached_at": "2025-04-23T13:14:33Z", + "attachment_id": 5382433815, + "content_type": "application/pdf", + "document_markup_layer_id": 62357757, + "filename": "262816-01-00 - ACR Sbtl Review - Safety Switches.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-23T13:14:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSHCJ3YATYARX23HW9QPBE82?companyId=8089&projectId=2563870&sig=5ed3474dca8409637bb2c7abaab7cb286eff57cd54d100aa60eedd99ec557d05", + "version_timestamp": "2025-04-23T13:14:33Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-23", + "sent_date": "2025-04-16", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 154173066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153648698, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153648697, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-16", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153648693, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137820532, + "additional_page_count": 1, + "attached_at": "2025-04-16T13:22:46Z", + "attachment_id": 5368989169, + "content_type": "application/pdf", + "document_markup_layer_id": 62085393, + "filename": "26 28 16 - 1.0 - Safety Switches.pdf", + "markup_updated_at": "2025-04-16T13:28:21Z", + "state": "excluded", + "updated_at": "2025-04-16T13:28:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZC85F2CK8JZ8Z4YVPC5P41?companyId=8089&projectId=2563870&sig=2943ae05100823ef8de060c3a1fad0bfed08ba8e9413c862d5760949ad88e3c9", + "version_timestamp": "2025-04-16T13:28:21Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 153648694, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153648695, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153648690, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137820057, + "additional_page_count": 1, + "attached_at": "2025-04-16T13:22:46Z", + "attachment_id": 5368989169, + "content_type": "application/pdf", + "document_markup_layer_id": 62085393, + "filename": "26 28 16 - 1.0 - Safety Switches.pdf", + "markup_updated_at": "2025-04-16T13:28:21Z", + "state": "outdated", + "updated_at": "2025-04-16T13:22:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRZC85F2CK8JZ8Z4YVPC5P41?companyId=8089&projectId=2563870&sig=2943ae05100823ef8de060c3a1fad0bfed08ba8e9413c862d5760949ad88e3c9", + "version_timestamp": "2025-04-16T13:22:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-16", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -2, + "workflow_group_number": 0 + }, + { + "id": 153648692, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153648691, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-14T21:39:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T14:13:11Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-04-30", + "formatted_number": "26 28 16-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27110369, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38038365, + "comment": null, + "distributed_attachments": [ + { + "id": 5397288228, + "content_type": "application/pdf", + "filename": "26 28 16-1.0 - Enclosed Switches-PD_HMG_ACR Review.pdf", + "source_prostore_file_id": 5397288228, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3M8SB0AXFCHPZR3T1Q7Y7A?companyId=8089&projectId=2563870&sig=ad936c20351e6b4e0811627c87695fda70e9e9b867966b77f5f6d63b3c69ddfb", + "viewable_document_id": 831330032 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153648701, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-06T14:13:11Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037843, + "current_revision_id": 45441313, + "description": "ENCLOSED SWITCHES", + "label": "26 28 16 - ENCLOSED SWITCHES", + "number": "26 28 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331588 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Enclosed Switches (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T14:13:11Z" + }, + { + "id": 60253817, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T16:27:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104416-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037757, + "current_revision_id": 44088290, + "description": "Fire Extinguishers", + "label": "104416 - Fire Extinguishers", + "number": "104416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023548 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Extinguishers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:05Z" + }, + { + "id": 60253858, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T16:28:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104416-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037757, + "current_revision_id": 44088290, + "description": "Fire Extinguishers", + "label": "104416 - Fire Extinguishers", + "number": "104416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023548 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Extinguishers (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:01Z" + }, + { + "id": 60255513, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T16:46:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104416-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037757, + "current_revision_id": 44088290, + "description": "Fire Extinguishers", + "label": "104416 - Fire Extinguishers", + "number": "104416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023548 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Extinguishers (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:01Z" + }, + { + "id": 60261994, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:03:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104413-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037755, + "current_revision_id": 44088289, + "description": "Fire Protection Cabinets", + "label": "104413 - Fire Protection Cabinets", + "number": "104413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023541 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Protection Cabinets (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:06Z" + }, + { + "id": 60262091, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:04:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104413-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037755, + "current_revision_id": 44088289, + "description": "Fire Protection Cabinets", + "label": "104413 - Fire Protection Cabinets", + "number": "104413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023541 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Protection Cabinets (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:06Z" + }, + { + "id": 60262116, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:05:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104413-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037755, + "current_revision_id": 44088289, + "description": "Fire Protection Cabinets", + "label": "104413 - Fire Protection Cabinets", + "number": "104413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023541 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Protection Cabinets (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:07Z" + }, + { + "id": 60262157, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:06:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "104413-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037755, + "current_revision_id": 44088289, + "description": "Fire Protection Cabinets", + "label": "104413 - Fire Protection Cabinets", + "number": "104413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023541 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Protection Cabinets (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:02Z" + }, + { + "id": 60262378, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:11:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102800-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037754, + "current_revision_id": 44088288, + "description": "Toilet, Bath, and Laundry Accessories", + "label": "102800 - Toilet, Bath, and Laundry Accessories", + "number": "102800", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023536 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Toilet, Bath and Laundry Accessories (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:07Z" + }, + { + "id": 60262396, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:12:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102800-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037754, + "current_revision_id": 44088288, + "description": "Toilet, Bath, and Laundry Accessories", + "label": "102800 - Toilet, Bath, and Laundry Accessories", + "number": "102800", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023536 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Toilet, Bath and Laundry Accessories (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:08Z" + }, + { + "id": 60262411, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:12:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102800-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037754, + "current_revision_id": 44088288, + "description": "Toilet, Bath, and Laundry Accessories", + "label": "102800 - Toilet, Bath, and Laundry Accessories", + "number": "102800", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023536 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Toilet, Bath and Laundry Accessories (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:02Z" + }, + { + "id": 60262424, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:13:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102800-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037754, + "current_revision_id": 44088288, + "description": "Toilet, Bath, and Laundry Accessories", + "label": "102800 - Toilet, Bath, and Laundry Accessories", + "number": "102800", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023536 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Toilet, Bath and Laundry Accessories (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:03Z" + }, + { + "id": 60262693, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:18:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102600-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037752, + "current_revision_id": 44088287, + "description": "Wall and Door Protection", + "label": "102600 - Wall and Door Protection", + "number": "102600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023525 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall and Door Protection (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:08Z" + }, + { + "id": 60262719, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:19:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102600-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037752, + "current_revision_id": 44088287, + "description": "Wall and Door Protection", + "label": "102600 - Wall and Door Protection", + "number": "102600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023525 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall and Door Protection (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:09Z" + }, + { + "id": 60262726, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:19:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102600-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037752, + "current_revision_id": 44088287, + "description": "Wall and Door Protection", + "label": "102600 - Wall and Door Protection", + "number": "102600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023525 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall and Door Protection (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:09Z" + }, + { + "id": 60262751, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:19:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102600-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037752, + "current_revision_id": 44088287, + "description": "Wall and Door Protection", + "label": "102600 - Wall and Door Protection", + "number": "102600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023525 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall and Door Protection (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:03Z" + }, + { + "id": 60262839, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:21:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102600-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037752, + "current_revision_id": 44088287, + "description": "Wall and Door Protection", + "label": "102600 - Wall and Door Protection", + "number": "102600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023525 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall and Door Protection (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:04Z" + }, + { + "id": 60262995, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:24:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102240-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038924, + "current_revision_id": 45441141, + "description": "OPERABLE GLASS PARTITIONS", + "label": "102240 - OPERABLE GLASS PARTITIONS", + "number": "102240", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331354 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Operable Glass Partitions (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:09Z" + }, + { + "id": 60263004, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:25:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102240-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038924, + "current_revision_id": 45441141, + "description": "OPERABLE GLASS PARTITIONS", + "label": "102240 - OPERABLE GLASS PARTITIONS", + "number": "102240", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331354 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Operable Glass Partitions (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:10Z" + }, + { + "id": 60263019, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:25:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102240-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038924, + "current_revision_id": 45441141, + "description": "OPERABLE GLASS PARTITIONS", + "label": "102240 - OPERABLE GLASS PARTITIONS", + "number": "102240", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331354 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Operable Glass Partitions (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:10Z" + }, + { + "id": 60263108, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:27:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102240-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038924, + "current_revision_id": 45441141, + "description": "OPERABLE GLASS PARTITIONS", + "label": "102240 - OPERABLE GLASS PARTITIONS", + "number": "102240", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331354 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Operable Glass Partitions (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:04Z" + }, + { + "id": 60263129, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:27:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102240-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038924, + "current_revision_id": 45441141, + "description": "OPERABLE GLASS PARTITIONS", + "label": "102240 - OPERABLE GLASS PARTITIONS", + "number": "102240", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331354 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Operable Glass Partitions (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:05Z" + }, + { + "id": 60263439, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:34:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:11Z" + }, + { + "id": 60263449, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:34:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:11Z" + }, + { + "id": 60263464, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:35:20Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:12Z" + }, + { + "id": 60263496, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:35:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:05Z" + }, + { + "id": 60263517, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:36:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:06Z" + }, + { + "id": 60263603, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:38:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "102239-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038923, + "current_revision_id": 45441140, + "description": "FOLDING PANEL PARTITIONS", + "label": "102239 - FOLDING PANEL PARTITIONS", + "number": "102239", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331353 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Folding Panel Partitions (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:06Z" + }, + { + "id": 60264565, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:49:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:12Z" + }, + { + "id": 60264586, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:49:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:13Z" + }, + { + "id": 60264605, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:50:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:13Z" + }, + { + "id": 60264621, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:50:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:07Z" + }, + { + "id": 60264648, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:51:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:07Z" + }, + { + "id": 60264673, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:51:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101426-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038296, + "current_revision_id": 45441139, + "description": "POST AND PANEL PYLON SIGNAGE", + "label": "101426 - POST AND PANEL PYLON SIGNAGE", + "number": "101426", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331351 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Post and Panel Pylon Signage (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:08Z" + }, + { + "id": 60265045, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:59:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "108200-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039537, + "current_revision_id": 45441149, + "description": "MECHANICAL SCREENS", + "label": "108200 - MECHANICAL SCREENS", + "number": "108200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331371 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Screens (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:14Z" + }, + { + "id": 60265081, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T19:59:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "108200-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039537, + "current_revision_id": 45441149, + "description": "MECHANICAL SCREENS", + "label": "108200 - MECHANICAL SCREENS", + "number": "108200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331371 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Screens (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:14Z" + }, + { + "id": 60265158, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:00:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "108200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039537, + "current_revision_id": 45441149, + "description": "MECHANICAL SCREENS", + "label": "108200 - MECHANICAL SCREENS", + "number": "108200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331371 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Screens (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:15Z" + }, + { + "id": 60265366, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:01:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "107516-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037764, + "current_revision_id": 45441148, + "description": "GROUND-SET FLAGPOLES", + "label": "107516 - GROUND-SET FLAGPOLES", + "number": "107516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331370 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ground-set Flag Poles (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:15Z" + }, + { + "id": 60265383, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:01:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "107516-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037764, + "current_revision_id": 45441148, + "description": "GROUND-SET FLAGPOLES", + "label": "107516 - GROUND-SET FLAGPOLES", + "number": "107516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331370 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ground-set Flag Poles (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:16Z" + }, + { + "id": 60265392, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:02:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "024119-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037651, + "current_revision_id": 45441058, + "description": "SELECTIVE DEMOLITION", + "label": "024119 - SELECTIVE DEMOLITION", + "number": "024119", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805330991 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ground-set Flag Poles (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:16Z" + }, + { + "id": 60265427, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:02:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "107516-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037764, + "current_revision_id": 45441148, + "description": "GROUND-SET FLAGPOLES", + "label": "107516 - GROUND-SET FLAGPOLES", + "number": "107516", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331370 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ground-set Flag Poles (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:08Z" + }, + { + "id": 60265694, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:08:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105613-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037761, + "current_revision_id": 45441147, + "description": "METAL STORAGE SHELVING", + "label": "105613 - METAL STORAGE SHELVING", + "number": "105613", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331367 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Storage Shelving (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:17Z" + }, + { + "id": 60265722, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:08:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105613-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037761, + "current_revision_id": 45441147, + "description": "METAL STORAGE SHELVING", + "label": "105613 - METAL STORAGE SHELVING", + "number": "105613", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331367 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Storage Shelving (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:17Z" + }, + { + "id": 60265737, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:09:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105613-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037761, + "current_revision_id": 45441147, + "description": "METAL STORAGE SHELVING", + "label": "105613 - METAL STORAGE SHELVING", + "number": "105613", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331367 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Storage Shelving (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:17Z" + }, + { + "id": 60266505, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:20:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105613-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037761, + "current_revision_id": 45441147, + "description": "METAL STORAGE SHELVING", + "label": "105613 - METAL STORAGE SHELVING", + "number": "105613", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331367 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Storage Shelving (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:09Z" + }, + { + "id": 60266518, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:20:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105613-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037761, + "current_revision_id": 45441147, + "description": "METAL STORAGE SHELVING", + "label": "105613 - METAL STORAGE SHELVING", + "number": "105613", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331367 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Storage Shelving (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:09Z" + }, + { + "id": 60266881, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:27:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:18Z" + }, + { + "id": 60266902, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:28:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:19Z" + }, + { + "id": 60266932, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:28:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:19Z" + }, + { + "id": 60267091, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:30:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:10Z" + }, + { + "id": 60267133, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:30:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:10Z" + }, + { + "id": 60267399, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:33:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "105113-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037759, + "current_revision_id": 45441146, + "description": "METAL LOCKERS", + "label": "105113 - METAL LOCKERS", + "number": "105113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331364 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Lockers (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:11Z" + }, + { + "id": 60267733, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:39:54Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101419-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037750, + "current_revision_id": 44088283, + "description": "Dimensional Letter Signage", + "label": "101419 - Dimensional Letter Signage", + "number": "101419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023503 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dimensional Letter Signage (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:20Z" + }, + { + "id": 60267746, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:40:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101419-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037750, + "current_revision_id": 44088283, + "description": "Dimensional Letter Signage", + "label": "101419 - Dimensional Letter Signage", + "number": "101419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023503 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dimensional Letter Signage (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:20Z" + }, + { + "id": 60267786, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:40:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101419-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037750, + "current_revision_id": 44088283, + "description": "Dimensional Letter Signage", + "label": "101419 - Dimensional Letter Signage", + "number": "101419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023503 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dimensional Letter Signage (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:20Z" + }, + { + "id": 60267861, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:41:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101419-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037750, + "current_revision_id": 44088283, + "description": "Dimensional Letter Signage", + "label": "101419 - Dimensional Letter Signage", + "number": "101419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023503 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dimensional Letter Signage (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:11Z" + }, + { + "id": 60268086, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:42:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101416-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037747, + "current_revision_id": 45441137, + "description": "PLAQUES", + "label": "101416 - PLAQUES", + "number": "101416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331344 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plaques (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:21Z" + }, + { + "id": 60268178, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:42:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101416-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037747, + "current_revision_id": 45441137, + "description": "PLAQUES", + "label": "101416 - PLAQUES", + "number": "101416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331344 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plaques (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:21Z" + }, + { + "id": 60268260, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:42:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101416-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037747, + "current_revision_id": 45441137, + "description": "PLAQUES", + "label": "101416 - PLAQUES", + "number": "101416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331344 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plaques (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:22Z" + }, + { + "id": 60268361, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:43:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101416-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037747, + "current_revision_id": 45441137, + "description": "PLAQUES", + "label": "101416 - PLAQUES", + "number": "101416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331344 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plaques (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:12Z" + }, + { + "id": 60268453, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:43:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101416-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037747, + "current_revision_id": 45441137, + "description": "PLAQUES", + "label": "101416 - PLAQUES", + "number": "101416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331344 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plaques (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:12Z" + }, + { + "id": 60268735, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:46:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101400-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037745, + "current_revision_id": 44089117, + "description": "Signage", + "label": "101400 - Signage", + "number": "101400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035704 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Signage (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:22Z" + }, + { + "id": 60268782, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:46:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101400-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037745, + "current_revision_id": 44089117, + "description": "Signage", + "label": "101400 - Signage", + "number": "101400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035704 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Signage (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:23Z" + }, + { + "id": 60268854, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:47:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101400-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037745, + "current_revision_id": 44089117, + "description": "Signage", + "label": "101400 - Signage", + "number": "101400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035704 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Signage (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:23Z" + }, + { + "id": 60268909, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:48:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101400-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037745, + "current_revision_id": 44089117, + "description": "Signage", + "label": "101400 - Signage", + "number": "101400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035704 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Signage (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:13Z" + }, + { + "id": 60269151, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:50:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101200-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037742, + "current_revision_id": 45441135, + "description": "DISPLAY CASES", + "label": "101200 - DISPLAY CASES", + "number": "101200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331339 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Display Cases (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:24Z" + }, + { + "id": 60269176, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:51:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101200-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037742, + "current_revision_id": 45441135, + "description": "DISPLAY CASES", + "label": "101200 - DISPLAY CASES", + "number": "101200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331339 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Display Cases (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:24Z" + }, + { + "id": 60269203, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:51:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037742, + "current_revision_id": 45441135, + "description": "DISPLAY CASES", + "label": "101200 - DISPLAY CASES", + "number": "101200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331339 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Display Cases (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:25Z" + }, + { + "id": 60269236, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:52:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101200-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037742, + "current_revision_id": 45441135, + "description": "DISPLAY CASES", + "label": "101200 - DISPLAY CASES", + "number": "101200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331339 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Display Cases (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:13Z" + }, + { + "id": 60269289, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:53:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101100-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037740, + "current_revision_id": 44088279, + "description": "Visual Display Units", + "label": "101100 - Visual Display Units", + "number": "101100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023488 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Visual Display Units (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:25Z" + }, + { + "id": 60269307, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:53:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101100-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037740, + "current_revision_id": 44088279, + "description": "Visual Display Units", + "label": "101100 - Visual Display Units", + "number": "101100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023488 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Visual Display Units (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:26Z" + }, + { + "id": 60269319, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:54:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101100-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037740, + "current_revision_id": 44088279, + "description": "Visual Display Units", + "label": "101100 - Visual Display Units", + "number": "101100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023488 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Visual Display Units (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:26Z" + }, + { + "id": 60269349, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-15T20:54:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101100-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037740, + "current_revision_id": 44088279, + "description": "Visual Display Units", + "label": "101100 - Visual Display Units", + "number": "101100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023488 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785056, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.B", + "specification_section_id": null, + "submittal_ids": [ + 60268453, + 60262157, + 60263108, + 60262751, + 60262411, + 60267399, + 60263129, + 60266505, + 60255513, + 60264621, + 60267133, + 60263496, + 60262424, + 60263517, + 60264648, + 60264673, + 60268361, + 60262839, + 60269349, + 60268909, + 60266518, + 60267091, + 60263603, + 60253858, + 60269236, + 60267861, + 60265427 + ], + "title": "Division 010 Closeout", + "updated_at": "2025-01-17T16:37:03Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Visual Display Units (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:14Z" + }, + { + "id": 60281846, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:26:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:27Z" + }, + { + "id": 60281869, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:27:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (LD)", + "type": { + "id": 157590, + "name": "LEED Data", + "translated_name": "LEED Data" + }, + "updated_at": "2025-03-08T12:30:27Z" + }, + { + "id": 60281880, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:27:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:28Z" + }, + { + "id": 60281892, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:28:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:28Z" + }, + { + "id": 60281917, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:28:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:14Z" + }, + { + "id": 60281928, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:29:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "11 67 33-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038297, + "current_revision_id": 45441153, + "description": "CLIMBING WALLS", + "label": "11 67 33 - CLIMBING WALLS", + "number": "11 67 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331379 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Climbing Walls (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:15Z" + }, + { + "id": 60281964, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:30:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "116623-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038926, + "current_revision_id": 45441152, + "description": "Gymnasium Equipment", + "label": "116623 - Gymnasium Equipment", + "number": "116623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331378 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gymnasium Equipment (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:28Z" + }, + { + "id": 60281978, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:31:38Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "116623-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038926, + "current_revision_id": 45441152, + "description": "Gymnasium Equipment", + "label": "116623 - Gymnasium Equipment", + "number": "116623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331378 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gymnasium Equipment (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:29Z" + }, + { + "id": 60281990, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:32:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "116623-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038926, + "current_revision_id": 45441152, + "description": "Gymnasium Equipment", + "label": "116623 - Gymnasium Equipment", + "number": "116623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331378 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gymnasium Equipment (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:29Z" + }, + { + "id": 60282031, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:33:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "116623-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038926, + "current_revision_id": 45441152, + "description": "Gymnasium Equipment", + "label": "116623 - Gymnasium Equipment", + "number": "116623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331378 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gymnasium Equipment (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:15Z" + }, + { + "id": 60282046, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:34:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "116623-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038926, + "current_revision_id": 45441152, + "description": "Gymnasium Equipment", + "label": "116623 - Gymnasium Equipment", + "number": "116623", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331378 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gymnasium Equipment (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:16Z" + }, + { + "id": 60282093, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:35:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "117300-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038298, + "current_revision_id": 45441154, + "description": "PATIENT CARE EQUIPMENT", + "label": "117300 - PATIENT CARE EQUIPMENT", + "number": "117300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331381 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Patient Care Equipment (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:30Z" + }, + { + "id": 60282124, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:36:00Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "117300-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038298, + "current_revision_id": 45441154, + "description": "PATIENT CARE EQUIPMENT", + "label": "117300 - PATIENT CARE EQUIPMENT", + "number": "117300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331381 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Patient Care Equipment (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:30Z" + }, + { + "id": 60282136, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:36:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "117300-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038298, + "current_revision_id": 45441154, + "description": "PATIENT CARE EQUIPMENT", + "label": "117300 - PATIENT CARE EQUIPMENT", + "number": "117300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331381 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Patient Care Equipment (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:31Z" + }, + { + "id": 60282145, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:36:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "117300-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038298, + "current_revision_id": 45441154, + "description": "PATIENT CARE EQUIPMENT", + "label": "117300 - PATIENT CARE EQUIPMENT", + "number": "117300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331381 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Patient Care Equipment (Mock-ups)", + "type": { + "id": 8918, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-08T12:30:31Z" + }, + { + "id": 60282190, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:37:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "117300-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038298, + "current_revision_id": 45441154, + "description": "PATIENT CARE EQUIPMENT", + "label": "117300 - PATIENT CARE EQUIPMENT", + "number": "117300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331381 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Patient Care Equipment (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:16Z" + }, + { + "id": 60282237, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:40:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "114000-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-06", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037766, + "current_revision_id": 45441150, + "description": "FOOD SERVICE EQUIPMENT", + "label": "114000 - FOOD SERVICE EQUIPMENT", + "number": "114000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331373 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-11-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Food Service Equipment Specifications (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:32Z" + }, + { + "id": 60282245, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:40:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "114000-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037766, + "current_revision_id": 45441150, + "description": "FOOD SERVICE EQUIPMENT", + "label": "114000 - FOOD SERVICE EQUIPMENT", + "number": "114000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331373 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Food Service Equipment Specifications (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:17Z" + }, + { + "id": 60282253, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:40:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "114000-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037766, + "current_revision_id": 45441150, + "description": "FOOD SERVICE EQUIPMENT", + "label": "114000 - FOOD SERVICE EQUIPMENT", + "number": "114000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331373 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786014, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.B", + "specification_section_id": null, + "submittal_ids": [ + 60282046, + 60282190, + 60281917, + 60281928, + 60282031, + 60282245, + 60282253 + ], + "title": "Division 011 Closeout", + "updated_at": "2025-01-16T13:42:23Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Food Service Equipment Specifications (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:18Z" + }, + { + "id": 60282796, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:55:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122413-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037771, + "current_revision_id": 44089121, + "description": "Roller Window Shades", + "label": "122413 - Roller Window Shades", + "number": "122413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035721 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roller Window Shades (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:32Z" + }, + { + "id": 60282818, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:56:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122413-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037771, + "current_revision_id": 44089121, + "description": "Roller Window Shades", + "label": "122413 - Roller Window Shades", + "number": "122413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035721 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roller Window Shades (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:33Z" + }, + { + "id": 60282833, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:56:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122413-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037771, + "current_revision_id": 44089121, + "description": "Roller Window Shades", + "label": "122413 - Roller Window Shades", + "number": "122413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035721 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roller Window Shades (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:33Z" + }, + { + "id": 60282920, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:58:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122413-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037771, + "current_revision_id": 44089121, + "description": "Roller Window Shades", + "label": "122413 - Roller Window Shades", + "number": "122413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035721 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roller Window Shades (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:18Z" + }, + { + "id": 60282935, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T13:59:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122413-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037771, + "current_revision_id": 44089121, + "description": "Roller Window Shades", + "label": "122413 - Roller Window Shades", + "number": "122413", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035721 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roller Window Shades (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:19Z" + }, + { + "id": 60283063, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:03:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:34Z" + }, + { + "id": 60283074, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:03:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:34Z" + }, + { + "id": 60283087, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:04:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 55, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:34Z" + }, + { + "id": 60283120, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:04:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:19Z" + }, + { + "id": 60283252, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:06:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:20Z" + }, + { + "id": 60283276, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:06:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "122200-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36039538, + "current_revision_id": 45441155, + "description": "Curtains and Drapes", + "label": "122200 - Curtains and Drapes", + "number": "122200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331384 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curtains and Drapes (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:20Z" + }, + { + "id": 60286313, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:58:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "124813-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037774, + "current_revision_id": 44088302, + "description": "Entrance Floor Mats and Frames", + "label": "124813 - Entrance Floor Mats and Frames", + "number": "124813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023598 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Entrance Floor Mats and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:35Z" + }, + { + "id": 60286331, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T14:58:30Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "124813-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037774, + "current_revision_id": 44088302, + "description": "Entrance Floor Mats and Frames", + "label": "124813 - Entrance Floor Mats and Frames", + "number": "124813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023598 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Entrance Floor Mats and Frames (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:35Z" + }, + { + "id": 60286423, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T15:00:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "124813-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037774, + "current_revision_id": 44088302, + "description": "Entrance Floor Mats and Frames", + "label": "124813 - Entrance Floor Mats and Frames", + "number": "124813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023598 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Entrance Floor Mats and Frames (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:21Z" + }, + { + "id": 60286447, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T15:00:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "124813-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037774, + "current_revision_id": 44088302, + "description": "Entrance Floor Mats and Frames", + "label": "124813 - Entrance Floor Mats and Frames", + "number": "124813", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023598 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Entrance Floor Mats and Frames (AS)", + "type": { + "id": 157591, + "name": "Attic Stock", + "translated_name": "Attic Stock" + }, + "updated_at": "2025-03-06T12:32:21Z" + }, + { + "id": 60293058, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:51:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "123661-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037772, + "current_revision_id": 44088301, + "description": "Simulated Stone Countertops", + "label": "123661 - Simulated Stone Countertops", + "number": "123661", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023593 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Solid Surface Countertops (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:36Z" + }, + { + "id": 60293091, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:51:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "123661-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037772, + "current_revision_id": 44088301, + "description": "Simulated Stone Countertops", + "label": "123661 - Simulated Stone Countertops", + "number": "123661", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023593 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Solid Surface Countertops (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:36Z" + }, + { + "id": 60293112, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:52:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "123661-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037772, + "current_revision_id": 44088301, + "description": "Simulated Stone Countertops", + "label": "123661 - Simulated Stone Countertops", + "number": "123661", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023593 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786099, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.A", + "specification_section_id": null, + "submittal_ids": [ + 60283063, + 60283087, + 60293112, + 60286331, + 60282833, + 60293091, + 60282818, + 60282796, + 60293058, + 60286313, + 60283074 + ], + "title": "Division 012 Action Submittals", + "updated_at": "2025-01-16T16:56:00Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Solid Surface Countertops (Mock-up)", + "type": { + "id": 8918, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-08T12:30:37Z" + }, + { + "id": 60293127, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:52:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "123661-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037772, + "current_revision_id": 44088301, + "description": "Simulated Stone Countertops", + "label": "123661 - Simulated Stone Countertops", + "number": "123661", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023593 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786098, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "012.B", + "specification_section_id": null, + "submittal_ids": [ + 60286447, + 60283276, + 60282920, + 60283252, + 60282935, + 60283120, + 60286423, + 60293127 + ], + "title": "Division 012 Closeout", + "updated_at": "2025-01-16T16:55:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Solid Surface Countertops (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:22Z" + }, + { + "id": 60293594, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147343339, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134342099, + "additional_page_count": 0, + "attached_at": "2025-02-10T16:25:40Z", + "attachment_id": 5229455934, + "content_type": "application/pdf", + "document_markup_layer_id": 59168609, + "filename": "14 21 23 - MRL Elevator_PD_Combined review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-10T16:25:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKRAVWKYT93Q7DKV1BF2C8P7?companyId=8089&projectId=2563870&sig=e01c06cb75a1b6e9a7f84f054d321a6aa9e4b3357e57f82441a46fa18c34e2d7", + "version_timestamp": "2025-02-10T16:25:40Z" + } + ], + "comment": "See attached pdf for review comments.", + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-02-10", + "sent_date": "2025-01-29", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 147343338, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-29", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147343336, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 133787269, + "additional_page_count": 0, + "attached_at": "2025-01-29T19:57:09Z", + "attachment_id": 5206165768, + "content_type": "application/pdf", + "document_markup_layer_id": 58920544, + "filename": "14 21 23 3.0 - MRL Traction Elevator Submittal.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-01-29T19:57:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJST5Z6SQ1G1VS1BYHG5TFN8?companyId=8089&projectId=2563870&sig=79dbd9a18e890c40d4901a06491f49140f0d3b86652806f532414c868ca953a9", + "version_timestamp": "2025-01-29T19:57:09Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-07", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-01-29", + "sent_date": "2025-01-29", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147343335, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147343334, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 133786463, + "additional_page_count": 1, + "attached_at": "2025-01-29T19:50:23Z", + "attachment_id": 5206136972, + "content_type": "application/pdf", + "document_markup_layer_id": 58696982, + "filename": "14 21 23 3.0 - MRL Traction Elevator Submittal.pdf", + "markup_updated_at": "2025-01-29T19:53:56Z", + "state": "excluded", + "updated_at": "2025-01-29T19:50:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJSSTHEM66J3069QVVD0AMVX?companyId=8089&projectId=2563870&sig=6320f8550b7c193802e1ef69c806127995e135b3fc4b2002d88c605bef21ef8b", + "version_timestamp": "2025-01-29T19:50:23Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-01-29", + "sent_date": "2025-01-15", + "user": { + "id": 8565351, + "name": "Gene aizikovich" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:58:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-10T16:34:04Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": "2025-02-24", + "formatted_number": "142123-3", + "issue_date": null, + "last_distributed_submittal": { + "id": 25968419, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36346636, + "comment": "See attached pdf for review comments.
", + "distributed_attachments": [ + { + "id": 5229455934, + "content_type": "application/pdf", + "filename": "14 21 23 - MRL Elevator_PD_Combined review.pdf", + "source_prostore_file_id": 5229455934, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKRAVWKYT93Q7DKV1BF2C8P7?companyId=8089&projectId=2563870&sig=e01c06cb75a1b6e9a7f84f054d321a6aa9e4b3357e57f82441a46fa18c34e2d7", + "viewable_document_id": 801764213 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 147343339, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 8565351, + "initials": "GA", + "name": "Gene aizikovich", + "vendor_name": "Schindler Elevator Corp" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Gene,
\nPlease see response for elevator submittal. Please resubmit based on the engineers comments for 480V requirement.
", + "sent_at": "2025-02-10T16:34:04Z" + }, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 8565351, + "name": "Gene aizikovich" + }, + "required_on_site_date": "2025-10-20", + "responsible_contractor": { + "id": 19201897, + "name": "Schindler Elevator Corp" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038928, + "current_revision_id": 44089122, + "description": "Electric Traction Passenger Elevators", + "label": "142123 - Electric Traction Passenger Elevators", + "number": "142123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035728 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2786601, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.A", + "specification_section_id": null, + "submittal_ids": [ + 60293632, + 60293613, + 60898107, + 60293594 + ], + "title": "Schindler Action Submittals", + "updated_at": "2025-02-20T20:37:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T18:50:51Z" + }, + { + "id": 60293613, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:58:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "142123-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-20", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038928, + "current_revision_id": 44089122, + "description": "Electric Traction Passenger Elevators", + "label": "142123 - Electric Traction Passenger Elevators", + "number": "142123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035728 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786601, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.A", + "specification_section_id": null, + "submittal_ids": [ + 60293632, + 60293613, + 60898107, + 60293594 + ], + "title": "Schindler Action Submittals", + "updated_at": "2025-02-20T20:37:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:38Z" + }, + { + "id": 60293632, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T16:59:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "142123-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-10-20", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038928, + "current_revision_id": 44089122, + "description": "Electric Traction Passenger Elevators", + "label": "142123 - Electric Traction Passenger Elevators", + "number": "142123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035728 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786601, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.A", + "specification_section_id": null, + "submittal_ids": [ + 60293632, + 60293613, + 60898107, + 60293594 + ], + "title": "Schindler Action Submittals", + "updated_at": "2025-02-20T20:37:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:38Z" + }, + { + "id": 60293687, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:00:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "142400-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037775, + "current_revision_id": 44086617, + "description": "HYDRAULIC ELEVATORS", + "label": "142400 - HYDRAULIC ELEVATORS", + "number": "142400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786606, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.B", + "specification_section_id": null, + "submittal_ids": [ + 60293687, + 60293705 + ], + "title": "Schindler Closeout", + "updated_at": "2025-02-20T20:37:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:22Z" + }, + { + "id": 60293705, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:00:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "142400-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037775, + "current_revision_id": 44086617, + "description": "HYDRAULIC ELEVATORS", + "label": "142400 - HYDRAULIC ELEVATORS", + "number": "142400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786606, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.B", + "specification_section_id": null, + "submittal_ids": [ + 60293687, + 60293705 + ], + "title": "Schindler Closeout", + "updated_at": "2025-02-20T20:37:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (Certificates)", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-03-06T12:32:23Z" + }, + { + "id": 60293836, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:04:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "142400-6", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037775, + "current_revision_id": 44086617, + "description": "HYDRAULIC ELEVATORS", + "label": "142400 - HYDRAULIC ELEVATORS", + "number": "142400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 776993180 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydraulic Elevators (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-02-13T14:22:16Z" + }, + { + "id": 60294305, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155561478, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139542168, + "additional_page_count": 0, + "attached_at": "2025-05-19T20:37:56Z", + "attachment_id": 5436846535, + "content_type": "application/pdf", + "document_markup_layer_id": 63546563, + "filename": "21 10 00-1.0 - Electric Fire Pump PD - HMG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T20:37:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVN486CJMJDED3EFF6D0HRQH?companyId=8089&projectId=2563870&sig=05517264670982d982cceb927219fcde7fad748b2a0ddb7d57c3b9da4ccd832e", + "version_timestamp": "2025-05-19T20:37:56Z" + } + ], + "comment": "See attached pdf for review comments.", + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 155561479, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155561477, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155561476, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155561474, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138853276, + "additional_page_count": 1, + "attached_at": "2025-05-06T19:19:59Z", + "attachment_id": 5409901797, + "content_type": "application/pdf", + "document_markup_layer_id": 62920163, + "filename": "21 10 00 - 1.0 - Electric Fire Pump.pdf", + "markup_updated_at": "2025-05-06T19:21:47Z", + "state": "excluded", + "updated_at": "2025-05-06T19:21:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKGMMNB0V83ZPBG3RWVE30N?companyId=8089&projectId=2563870&sig=c41c422e5ec61dbf2a6d75ffe453d32476b472a94145e21123486a5c45ef92cd", + "version_timestamp": "2025-05-06T19:21:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155561475, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155561473, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138852979, + "additional_page_count": 1, + "attached_at": "2025-05-06T19:19:59Z", + "attachment_id": 5409901797, + "content_type": "application/pdf", + "document_markup_layer_id": 62920163, + "filename": "21 10 00 - 1.0 - Electric Fire Pump.pdf", + "markup_updated_at": "2025-05-06T19:21:47Z", + "state": "outdated", + "updated_at": "2025-05-06T19:19:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKGMMNB0V83ZPBG3RWVE30N?companyId=8089&projectId=2563870&sig=c41c422e5ec61dbf2a6d75ffe453d32476b472a94145e21123486a5c45ef92cd", + "version_timestamp": "2025-05-06T19:19:59Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-06", + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:15:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-28T13:57:36Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": "2025-05-20", + "formatted_number": "21 10 00-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27395316, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38465376, + "comment": "See attached pdf for review comments.
", + "distributed_attachments": [ + { + "id": 5436846535, + "content_type": "application/pdf", + "filename": "21 10 00-1.0 - Electric Fire Pump PD - HMG Response.pdf", + "source_prostore_file_id": 5436846535, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVN486CJMJDED3EFF6D0HRQH?companyId=8089&projectId=2563870&sig=05517264670982d982cceb927219fcde7fad748b2a0ddb7d57c3b9da4ccd832e", + "viewable_document_id": 838054746 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155561478, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 8596985, + "initials": "CO", + "name": "Chris Orr", + "vendor_name": "Firetron, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10033193, + "initials": "KM", + "name": "Kevin Mcnamara", + "vendor_name": "Firetron, Inc" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as noted.
", + "sent_at": "2025-05-28T13:57:36Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-20", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electric Fire Pump (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-28T13:57:36Z" + }, + { + "id": 60296364, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:52:43Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "271300-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037847, + "current_revision_id": 45441320, + "description": "STRUCTURED CABLING SYSTEM", + "label": "271300 - STRUCTURED CABLING SYSTEM", + "number": "271300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331601 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Structured Cabling (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:39Z" + }, + { + "id": 60296441, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:54:01Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "271300-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037847, + "current_revision_id": 45441320, + "description": "STRUCTURED CABLING SYSTEM", + "label": "271300 - STRUCTURED CABLING SYSTEM", + "number": "271300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331601 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Structured Cabling (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:39Z" + }, + { + "id": 60296538, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:56:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "275100-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037848, + "current_revision_id": 45441327, + "description": "DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "label": "275100 - DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "number": "275100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331608 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Distributed Communication (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:40Z" + }, + { + "id": 60296565, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:56:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "275100-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037848, + "current_revision_id": 45441327, + "description": "DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "label": "275100 - DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "number": "275100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331608 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Distributed Communication (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:40Z" + }, + { + "id": 60296627, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:58:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "271300-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037847, + "current_revision_id": 45441320, + "description": "STRUCTURED CABLING SYSTEM", + "label": "271300 - STRUCTURED CABLING SYSTEM", + "number": "271300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331601 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786735, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.B", + "specification_section_id": null, + "submittal_ids": [ + 60296657, + 60296627, + 60296682 + ], + "title": "Division 027 Closeout", + "updated_at": "2025-01-16T17:59:53Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Structured Cabling (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:25Z" + }, + { + "id": 60296657, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:59:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "275100-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037848, + "current_revision_id": 45441327, + "description": "DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "label": "275100 - DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "number": "275100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331608 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786735, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.B", + "specification_section_id": null, + "submittal_ids": [ + 60296657, + 60296627, + 60296682 + ], + "title": "Division 027 Closeout", + "updated_at": "2025-01-16T17:59:53Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Distributed Communication (As-builts)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-06T12:32:25Z" + }, + { + "id": 60296682, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T17:59:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "275100-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037848, + "current_revision_id": 45441327, + "description": "DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "label": "275100 - DISTRIBUTED COMMUNICATION SYSTEMS (PA)", + "number": "275100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331608 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786735, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.B", + "specification_section_id": null, + "submittal_ids": [ + 60296657, + 60296627, + 60296682 + ], + "title": "Division 027 Closeout", + "updated_at": "2025-01-16T17:59:53Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Distributed Communication (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:26Z" + }, + { + "id": 60302373, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:14:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "281300-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037854, + "current_revision_id": 45441337, + "description": "ACCESS CONTROL SYSTEM", + "label": "281300 - ACCESS CONTROL SYSTEM", + "number": "281300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331632 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Control System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:41Z" + }, + { + "id": 60302426, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:15:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "281300-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037854, + "current_revision_id": 45441337, + "description": "ACCESS CONTROL SYSTEM", + "label": "281300 - ACCESS CONTROL SYSTEM", + "number": "281300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331632 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Control System (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:41Z" + }, + { + "id": 60302481, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:16:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "281300-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037854, + "current_revision_id": 45441337, + "description": "ACCESS CONTROL SYSTEM", + "label": "281300 - ACCESS CONTROL SYSTEM", + "number": "281300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331632 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786934, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.B", + "specification_section_id": null, + "submittal_ids": [ + 60231729, + 60303355, + 60303037, + 60302481 + ], + "title": "Division 028 Closeout", + "updated_at": "2025-01-16T19:29:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Access Control System (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-01-16T19:29:14Z" + }, + { + "id": 60302874, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:24:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "280530-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037850, + "current_revision_id": 45441331, + "description": "PATHWAYS FOR SECURITY SYSTEMS", + "label": "280530 - PATHWAYS FOR SECURITY SYSTEMS", + "number": "280530", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331611 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pathway for Security Systems (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:42Z" + }, + { + "id": 60303037, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:25:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "280530-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037850, + "current_revision_id": 45441331, + "description": "PATHWAYS FOR SECURITY SYSTEMS", + "label": "280530 - PATHWAYS FOR SECURITY SYSTEMS", + "number": "280530", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331611 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786934, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.B", + "specification_section_id": null, + "submittal_ids": [ + 60231729, + 60303355, + 60303037, + 60302481 + ], + "title": "Division 028 Closeout", + "updated_at": "2025-01-16T19:29:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pathway for Security Systems (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-01-16T19:29:14Z" + }, + { + "id": 60303355, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:26:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "280510-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037849, + "current_revision_id": 45441330, + "description": "CONDUCTORS AND CABLES FOR SECURITY SYSTEMS", + "label": "280510 - CONDUCTORS AND CABLES FOR SECURITY SYSTEMS", + "number": "280510", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331610 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786934, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.B", + "specification_section_id": null, + "submittal_ids": [ + 60231729, + 60303355, + 60303037, + 60302481 + ], + "title": "Division 028 Closeout", + "updated_at": "2025-01-16T19:29:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Conductors and Cables for Security Systems (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-01-16T19:29:14Z" + }, + { + "id": 60304022, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:36:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "282300-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037856, + "current_revision_id": 45441340, + "description": "VIDEO SURVEILLANCE SYSTEM", + "label": "282300 - VIDEO SURVEILLANCE SYSTEM", + "number": "282300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331641 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Video Surveillance System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:42Z" + }, + { + "id": 60305028, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T19:54:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "282300-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-21", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037856, + "current_revision_id": 45441340, + "description": "VIDEO SURVEILLANCE SYSTEM", + "label": "282300 - VIDEO SURVEILLANCE SYSTEM", + "number": "282300", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331641 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786935, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "028.A", + "specification_section_id": null, + "submittal_ids": [ + 60302874, + 60302426, + 60302373, + 60304022, + 60305028, + 60231701, + 60231648 + ], + "title": "Division 028 Action Submittals", + "updated_at": "2025-01-16T20:39:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Video Surveillance System (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:43Z" + }, + { + "id": 60308831, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:02:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "31 2216-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038313, + "current_revision_id": 45441344, + "description": "FINE GRADING", + "label": "31 2216 - FINE GRADING", + "number": "31 2216", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331650 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fine Grading (Sample)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-24T18:33:18Z" + }, + { + "id": 60310436, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:38:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "323116-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 20, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037859, + "current_revision_id": 45441348, + "description": "WELDED WIRE FENCES AND GATES", + "label": "323116 - WELDED WIRE FENCES AND GATES", + "number": "323116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331665 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Welded Wire Fences and Gates (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:43Z" + }, + { + "id": 60310476, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:39:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "323116-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 20, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037859, + "current_revision_id": 45441348, + "description": "WELDED WIRE FENCES AND GATES", + "label": "323116 - WELDED WIRE FENCES AND GATES", + "number": "323116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331665 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Welded Wire Fences and Gates (SD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:43Z" + }, + { + "id": 60310499, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:39:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "323116-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 20, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037859, + "current_revision_id": 45441348, + "description": "WELDED WIRE FENCES AND GATES", + "label": "323116 - WELDED WIRE FENCES AND GATES", + "number": "323116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331665 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Welded Wire Fences and Gates (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:44Z" + }, + { + "id": 60310759, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:44:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "323116-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037859, + "current_revision_id": 45441348, + "description": "WELDED WIRE FENCES AND GATES", + "label": "323116 - WELDED WIRE FENCES AND GATES", + "number": "323116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331665 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Welded Wire Fences and Gates (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:26Z" + }, + { + "id": 60310780, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-16T21:44:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "323116-5", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037859, + "current_revision_id": 45441348, + "description": "WELDED WIRE FENCES AND GATES", + "label": "323116 - WELDED WIRE FENCES AND GATES", + "number": "323116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331665 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Welded Wire Fences and Gates (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:27Z" + }, + { + "id": 60319880, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:46:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329201-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038326, + "current_revision_id": 44087462, + "description": "PRAIRIES AND MEADOWS", + "label": "329201 - PRAIRIES AND MEADOWS", + "number": "329201", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011308 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Prairies and Meadows (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:44Z" + }, + { + "id": 60319961, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:49:25Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329201-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038326, + "current_revision_id": 44087462, + "description": "PRAIRIES AND MEADOWS", + "label": "329201 - PRAIRIES AND MEADOWS", + "number": "329201", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011308 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Prairies and Meadows (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:45Z" + }, + { + "id": 60319987, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:49:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329201-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038326, + "current_revision_id": 44087462, + "description": "PRAIRIES AND MEADOWS", + "label": "329201 - PRAIRIES AND MEADOWS", + "number": "329201", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011308 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Prairies and Meadows (Mock-up)", + "type": { + "id": 8918, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-03-08T12:30:45Z" + }, + { + "id": 60320017, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:50:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329201-4", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038326, + "current_revision_id": 44087462, + "description": "PRAIRIES AND MEADOWS", + "label": "329201 - PRAIRIES AND MEADOWS", + "number": "329201", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777011308 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Prairies and Meadows (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:27Z" + }, + { + "id": 60320096, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:52:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "328400-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 20, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038319, + "current_revision_id": 45441350, + "description": "LANDSCAPE IRRIGATION SYSTEM", + "label": "328400 - LANDSCAPE IRRIGATION SYSTEM", + "number": "328400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331666 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Landscape Irrigation System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:46Z" + }, + { + "id": 60320136, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:54:19Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "328400-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038319, + "current_revision_id": 45441350, + "description": "LANDSCAPE IRRIGATION SYSTEM", + "label": "328400 - LANDSCAPE IRRIGATION SYSTEM", + "number": "328400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331666 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Landscape Irrigation System (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:28Z" + }, + { + "id": 60320149, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:54:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "328400-3", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038319, + "current_revision_id": 45441350, + "description": "LANDSCAPE IRRIGATION SYSTEM", + "label": "328400 - LANDSCAPE IRRIGATION SYSTEM", + "number": "328400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331666 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Landscape Irrigation System (MD)", + "type": { + "id": 157592, + "name": "O&M Manual", + "translated_name": "O&M Manual" + }, + "updated_at": "2025-03-06T12:32:28Z" + }, + { + "id": 60320229, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:56:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "32 92 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038324, + "current_revision_id": 45441353, + "description": "TURF AND GRASSES", + "label": "32 92 00 - TURF AND GRASSES", + "number": "32 92 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331675 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Turf and Grasses (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:46Z" + }, + { + "id": 60320338, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T13:58:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "32 93 00-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038329, + "current_revision_id": 45441354, + "description": "PLANTS", + "label": "32 93 00 - PLANTS", + "number": "32 93 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331680 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plants (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:47Z" + }, + { + "id": 60320439, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T14:00:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "32 93 00-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-04-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038329, + "current_revision_id": 45441354, + "description": "PLANTS", + "label": "32 93 00 - PLANTS", + "number": "32 93 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331680 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-03-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787582, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.B", + "specification_section_id": null, + "submittal_ids": [ + 60320149, + 60320136, + 60310780, + 60320439, + 60320017, + 60310759 + ], + "title": "Division 032 Closeout", + "updated_at": "2025-01-17T15:53:28Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plants (Warranty)", + "type": { + "id": 157597, + "name": "Warranty", + "translated_name": "Warranty" + }, + "updated_at": "2025-03-06T12:32:29Z" + }, + { + "id": 60320532, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T14:01:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329114-1", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038322, + "current_revision_id": 45441352, + "description": "PLANTING MEDIA", + "label": "329114 - PLANTING MEDIA", + "number": "329114", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331671 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Planting Media (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:47Z" + }, + { + "id": 60320878, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T14:06:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "329114-2", + "issue_date": null, + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-15", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038322, + "current_revision_id": 45441352, + "description": "PLANTING MEDIA", + "label": "329114 - PLANTING MEDIA", + "number": "329114", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331671 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787276, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "032.A", + "specification_section_id": null, + "submittal_ids": [ + 60320229, + 60319880, + 60310499, + 60320532, + 60320878, + 60310476, + 60310436, + 60320096, + 60320338, + 60319961, + 60319987 + ], + "title": "Division 032 Action Submittals", + "updated_at": "2025-01-17T15:53:26Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Planting Media (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-08T12:30:48Z" + }, + { + "id": 60326975, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150709570, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139172448, + "additional_page_count": 0, + "attached_at": "2025-05-13T01:42:59Z", + "attachment_id": 5422463891, + "content_type": "application/pdf", + "document_markup_layer_id": 63173619, + "filename": "210S-1.0 - Flexible Base-PD_CIV.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-13T01:42:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3MXJ1GKA04J5XGGYZ8S1GJ?companyId=8089&projectId=2563870&sig=3d9eb8506b96fef505fad36f27577bfaec0ddfdba67d3d79e1bcf981452dc28c", + "version_timestamp": "2025-05-13T01:42:59Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 155687924, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150709569, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150709568, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138859927, + "additional_page_count": 1, + "attached_at": "2025-05-06T20:15:44Z", + "attachment_id": 5410131722, + "content_type": "application/pdf", + "document_markup_layer_id": 62925550, + "filename": "SP526 UES Report_Accepted.pdf", + "markup_updated_at": "2025-05-06T20:21:47Z", + "state": "excluded", + "updated_at": "2025-05-06T20:21:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKKT19BMG75RN93H3VQ4H5Y?companyId=8089&projectId=2563870&sig=27f7779b4cdb7bfb5b81644d052dca6ba45d49ff6c492ab5789d7646a1d428e0", + "version_timestamp": "2025-05-06T20:21:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150709567, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150709566, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138859514, + "additional_page_count": 1, + "attached_at": "2025-05-06T20:15:44Z", + "attachment_id": 5410131722, + "content_type": "application/pdf", + "document_markup_layer_id": 62925550, + "filename": "SP526 UES Report_Accepted.pdf", + "markup_updated_at": "2025-05-06T20:21:47Z", + "state": "outdated", + "updated_at": "2025-05-06T20:15:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKKT19BMG75RN93H3VQ4H5Y?companyId=8089&projectId=2563870&sig=27f7779b4cdb7bfb5b81644d052dca6ba45d49ff6c492ab5789d7646a1d428e0", + "version_timestamp": "2025-05-06T20:15:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": null, + "user": { + "id": 3662396, + "name": "Russell Hill" + }, + "variance": 31, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T16:05:47Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-15T18:59:21Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 9775551, + "name": "Noah Daily" + } + ], + "drawing_ids": [], + "due_date": "2025-05-20", + "formatted_number": "210S-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27250460, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38244183, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5422463891, + "content_type": "application/pdf", + "filename": "210S-1.0 - Flexible Base-PD_CIV.pdf", + "source_prostore_file_id": 5422463891, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3MXJ1GKA04J5XGGYZ8S1GJ?companyId=8089&projectId=2563870&sig=3d9eb8506b96fef505fad36f27577bfaec0ddfdba67d3d79e1bcf981452dc28c", + "viewable_document_id": 835596921 + } + ], + "response_name": "Approved", + "submittal_approver_id": 150709570, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 3662396, + "initials": "RH", + "name": "Russell Hill", + "vendor_name": "Champion Site Prep, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Please furnish as submitted.
", + "sent_at": "2025-05-15T18:59:21Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 3662396, + "name": "Russell Hill" + }, + "required_on_site_date": "2025-08-01", + "responsible_contractor": { + "id": 19169361, + "name": "Champion Site Prep, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37040499, + "current_revision_id": 45369612, + "description": "FLEXIBLE BASE", + "label": "210S - FLEXIBLE BASE", + "number": "210S", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 803894321 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-07-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787197, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "031.A", + "specification_section_id": null, + "submittal_ids": [ + 60326975, + 60327533 + ], + "title": "Champion Siteprep Action Submittals", + "updated_at": "2025-03-24T18:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Flexible Base (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T18:59:21Z" + }, + { + "id": 60327533, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156028315, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139172649, + "additional_page_count": 0, + "attached_at": "2025-05-13T01:53:30Z", + "attachment_id": 5422472906, + "content_type": "application/pdf", + "document_markup_layer_id": 63173766, + "filename": "340S-1.0 HMAC Surface Course-PD_CIV.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-13T01:53:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3NG8H28BXQX5TDTVVJTS5K?companyId=8089&projectId=2563870&sig=35498e4c2e1241b876ffb3da7e8405d9c8d99577ad6eef78630e314dc8fb186c", + "version_timestamp": "2025-05-13T01:53:30Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-05-23", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 151979417, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151979416, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-09", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151979415, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139066286, + "additional_page_count": 1, + "attached_at": "2025-05-09T18:37:41Z", + "attachment_id": 5418266747, + "content_type": "application/pdf", + "document_markup_layer_id": 63090766, + "filename": "340S 1.0 - HMAC Surface Course (PD).pdf", + "markup_updated_at": "2025-05-09T18:46:25Z", + "state": "excluded", + "updated_at": "2025-05-09T18:46:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTV5D863R71FTKDZ6FA6A2P1?companyId=8089&projectId=2563870&sig=2dd2bc1249a641235f77aa54a4a452a52114a7bd3008e5b51a5bc63c01cfd5e6", + "version_timestamp": "2025-05-09T18:46:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-09", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 151979414, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151979413, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139065729, + "additional_page_count": 1, + "attached_at": "2025-05-09T18:37:41Z", + "attachment_id": 5418266747, + "content_type": "application/pdf", + "document_markup_layer_id": 63090766, + "filename": "340S 1.0 - HMAC Surface Course (PD).pdf", + "markup_updated_at": "2025-05-09T18:46:25Z", + "state": "outdated", + "updated_at": "2025-05-09T18:37:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTV5D863R71FTKDZ6FA6A2P1?companyId=8089&projectId=2563870&sig=2dd2bc1249a641235f77aa54a4a452a52114a7bd3008e5b51a5bc63c01cfd5e6", + "version_timestamp": "2025-05-09T18:37:41Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-07", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-09", + "sent_date": null, + "user": { + "id": 3662396, + "name": "Russell Hill" + }, + "variance": 24, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-17T16:16:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-15T18:58:26Z", + "distribution_members": [ + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-23", + "formatted_number": "340S-1", + "issue_date": null, + "last_distributed_submittal": { + "id": 27250433, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38244148, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5422472906, + "content_type": "application/pdf", + "filename": "340S-1.0 HMAC Surface Course-PD_CIV.pdf", + "source_prostore_file_id": 5422472906, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3NG8H28BXQX5TDTVVJTS5K?companyId=8089&projectId=2563870&sig=35498e4c2e1241b876ffb3da7e8405d9c8d99577ad6eef78630e314dc8fb186c", + "viewable_document_id": 835598035 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156028315, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 3662396, + "initials": "RH", + "name": "Russell Hill", + "vendor_name": "Champion Site Prep, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as submitted.
", + "sent_at": "2025-05-15T18:58:26Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 3662396, + "name": "Russell Hill" + }, + "required_on_site_date": "2025-10-17", + "responsible_contractor": { + "id": 19169361, + "name": "Champion Site Prep, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37040833, + "current_revision_id": 45370053, + "description": "HOT MIX ASPHALTIC CONCRETE PAVEMENT", + "label": "340S - HOT MIX ASPHALTIC CONCRETE PAVEMENT", + "number": "340S", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 803903923 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-09-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2787197, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "031.A", + "specification_section_id": null, + "submittal_ids": [ + 60326975, + 60327533 + ], + "title": "Champion Siteprep Action Submittals", + "updated_at": "2025-03-24T18:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "HMAC Surface Course (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T18:58:26Z" + }, + { + "id": 60478416, + "actual_delivery_date": null, + "approvers": [ + { + "id": 146873560, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134254408, + "additional_page_count": 0, + "attached_at": "2025-02-07T14:06:59Z", + "attachment_id": 5225605187, + "content_type": "application/pdf", + "document_markup_layer_id": 59094218, + "filename": "05 12 00-4.0 Struct steel - Anchor Bolts - Structures Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-07T14:06:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGBPGGJ33A1FAFKNTSGEJDE?companyId=8089&projectId=2563870&sig=bb8b4f515e5d2114068a6e59b3f5f1c9357152e4927f08b02b49e23770cf6d5b", + "version_timestamp": "2025-02-07T14:06:59Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": "2025-01-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 146873561, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-23", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146873559, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 146873556, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 133503939, + "additional_page_count": 1, + "attached_at": "2025-01-23T19:42:32Z", + "attachment_id": 5194983782, + "content_type": "application/pdf", + "document_markup_layer_id": 58450461, + "filename": "05 12 00 - 4.0 - Anchor Bolt (SD).pdf", + "markup_updated_at": "2025-01-23T19:43:52Z", + "state": "excluded", + "updated_at": "2025-01-23T19:43:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJAAZ7VYGGGNN4ZJBYVGZ6VJ?companyId=8089&projectId=2563870&sig=b43ca2191f5dc7b5215220807038b116697bbfbb4da446a0c72aa59f94090b16", + "version_timestamp": "2025-01-23T19:43:52Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-01-23", + "sent_date": "2025-01-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -14, + "workflow_group_number": 1 + }, + { + "id": 146873557, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 146873555, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 133503842, + "additional_page_count": 1, + "attached_at": "2025-01-23T19:42:32Z", + "attachment_id": 5194983782, + "content_type": "application/pdf", + "document_markup_layer_id": 58450461, + "filename": "05 12 00 - 4.0 - Anchor Bolt (SD).pdf", + "markup_updated_at": "2025-01-23T19:43:52Z", + "state": "outdated", + "updated_at": "2025-01-23T19:42:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJAAZ7VYGGGNN4ZJBYVGZ6VJ?companyId=8089&projectId=2563870&sig=b43ca2191f5dc7b5215220807038b116697bbfbb4da446a0c72aa59f94090b16", + "version_timestamp": "2025-01-23T19:42:32Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-12", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-01-23", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-23T19:39:13Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-07T14:30:43Z", + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 11773778, + "name": "Aaron Glover" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + } + ], + "drawing_ids": [], + "due_date": "2025-02-12", + "formatted_number": "051200-4", + "issue_date": "2025-01-23", + "last_distributed_submittal": { + "id": 25946917, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36315225, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5225605187, + "content_type": "application/pdf", + "filename": "05 12 00-4.0 Struct steel - Anchor Bolts - Structures Review.pdf", + "source_prostore_file_id": 5225605187, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGBPGGJ33A1FAFKNTSGEJDE?companyId=8089&projectId=2563870&sig=bb8b4f515e5d2114068a6e59b3f5f1c9357152e4927f08b02b49e23770cf6d5b", + "viewable_document_id": 801049167 + } + ], + "response_name": "Conforms as Noted", + "submittal_approver_id": 146873560, + "submittal_response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "submittal_response_id": 23348886, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please see submittal with engineer comments.
", + "sent_at": "2025-02-07T14:30:43Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-04-04", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Structural Steel : Anchor Bolt (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:03Z" + }, + { + "id": 60604779, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147813831, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135572815, + "additional_page_count": 0, + "attached_at": "2025-03-05T14:48:09Z", + "attachment_id": 5279591717, + "content_type": "application/pdf", + "document_markup_layer_id": 60216534, + "filename": "33 05 30-1.0 - Manholes and Junction Boxes_SD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-05T14:48:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKCDBGJ9822QXC4ENEPFZEH?companyId=8089&projectId=2563870&sig=e3e68d76a6d8b0bc90d1dc9e6366dfe2170e940779d96a18e88c1f5c4b019629", + "version_timestamp": "2025-03-05T14:48:09Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-03-17", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-05", + "sent_date": "2025-02-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 147992777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813834, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813829, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135135117, + "additional_page_count": 0, + "attached_at": "2025-02-25T16:04:08Z", + "attachment_id": 5261595437, + "content_type": "application/pdf", + "document_markup_layer_id": 59849794, + "filename": "33 05 30 1.0 - Storm Precast Structures (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-25T16:04:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYXFFXG6CY7MFV0Y9PRHJ0B?companyId=8089&projectId=2563870&sig=f38b254d81af368b186ffaac59c7410141fd9f6b76e4aaafdf753b6f05451a32", + "version_timestamp": "2025-02-25T16:04:08Z" + } + ], + "comment": "Submitted for approval. Square junction boxes substituting round SD manholes due to decrease lead time. Square MH in stock, round MH 4-6 week lead time.", + "days_to_respond": 7, + "due_date": "2025-02-27", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": "2025-02-18", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -2, + "workflow_group_number": 1 + }, + { + "id": 147813830, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-18", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147823591, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134760939, + "additional_page_count": 1, + "attached_at": "2025-02-18T15:06:05Z", + "attachment_id": 5246387083, + "content_type": "application/pdf", + "document_markup_layer_id": 59539108, + "filename": "334000 - Storm Precast Structures.pdf", + "markup_updated_at": "2025-02-19T13:20:42Z", + "state": "excluded", + "updated_at": "2025-02-18T15:06:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMCSGCNP67NH3EHN392WXWKZ?companyId=8089&projectId=2563870&sig=64f787aea356fde4e1279b5b9064b788ed624c8fe645abb749e327b50aadd93f", + "version_timestamp": "2025-02-18T15:06:05Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-18", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 0, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-29T13:55:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-05T14:54:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-17", + "formatted_number": "33 05 30-1", + "issue_date": "2025-01-29", + "last_distributed_submittal": { + "id": 26279238, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36809435, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5279591717, + "content_type": "application/pdf", + "filename": "33 05 30-1.0 - Manholes and Junction Boxes_SD_reviewed.pdf", + "source_prostore_file_id": 5279591717, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKCDBGJ9822QXC4ENEPFZEH?companyId=8089&projectId=2563870&sig=e3e68d76a6d8b0bc90d1dc9e6366dfe2170e940779d96a18e88c1f5c4b019629", + "viewable_document_id": 810786205 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 147813831, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please revise submittal based on engineer's comments and resubmit.
", + "sent_at": "2025-03-05T14:54:33Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787874, + "current_revision_id": 45045032, + "description": "Manholes and Junction Boxes", + "label": "33 05 30 - Manholes and Junction Boxes", + "number": "33 05 30", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manholes and Junction boxes (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60604855, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147813838, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134992610, + "additional_page_count": 0, + "attached_at": "2025-02-21T17:25:31Z", + "attachment_id": 5255514682, + "content_type": "application/pdf", + "document_markup_layer_id": 59902353, + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-21T17:25:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRK37FTQGZZZJ0T4RM9WEH?companyId=8089&projectId=2563870&sig=83d81182252b44a6ccea54d87d583d65bb70a373687b74bb3d657008657b7d9b", + "version_timestamp": "2025-02-21T17:25:31Z" + }, + { + "id": 134992611, + "additional_page_count": 0, + "attached_at": "2025-02-21T17:25:31Z", + "attachment_id": 5255514945, + "content_type": "application/pdf", + "document_markup_layer_id": 59902278, + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-21T17:25:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRK7260SK0FCS1XR9Y7R3T?companyId=8089&projectId=2563870&sig=9b298efe63e35c1750ec7ad47e41fbf4b8ee198872755e80d3c9892ff05579c3", + "version_timestamp": "2025-02-21T17:25:31Z" + }, + { + "id": 134992612, + "additional_page_count": 0, + "attached_at": "2025-02-21T17:25:31Z", + "attachment_id": 5255515545, + "content_type": "application/pdf", + "document_markup_layer_id": 59902251, + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-21T17:25:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRKB4EM6RPJXR7W9YMBM5Y?companyId=8089&projectId=2563870&sig=02e70bc901fd67cc8c6c3e3cf72dc4e964360fb2829c68fda5dcf10ca4a96ea5", + "version_timestamp": "2025-02-21T17:25:31Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-21", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 147882575, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813841, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813836, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134139700, + "additional_page_count": 0, + "attached_at": "2025-02-05T18:19:51Z", + "attachment_id": 5220833105, + "content_type": "application/pdf", + "document_markup_layer_id": 59001344, + "filename": "33 10 00 1.0 - Water Distribution.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-05T18:19:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKBNCG8RN0CH4VV9CQHQ5518?companyId=8089&projectId=2563870&sig=2e7321686d714097c6f76ca88a3e07d80782ebd6e0b1d659f3269bff735c9f12", + "version_timestamp": "2025-02-05T18:19:51Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147813837, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147823698, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134066820, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:02:18Z", + "attachment_id": 5217776454, + "content_type": "application/pdf", + "document_markup_layer_id": 58936966, + "filename": "331000 - Fire Hydrants & Water.pdf", + "markup_updated_at": "2025-02-05T15:02:52Z", + "state": "excluded", + "updated_at": "2025-02-04T18:02:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK920VAKKMG3TAC906E4W518?companyId=8089&projectId=2563870&sig=327eafd1d4b45b17720aa80321d7391d8f59ad6df49a8ab8ce64da659fc85512", + "version_timestamp": "2025-02-04T18:02:18Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-29T13:57:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-21T21:56:53Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "33 10 00-1", + "issue_date": "2025-01-29", + "last_distributed_submittal": { + "id": 26137196, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36597291, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5255515545, + "content_type": "application/pdf", + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "source_prostore_file_id": 5255515545, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRKB4EM6RPJXR7W9YMBM5Y?companyId=8089&projectId=2563870&sig=02e70bc901fd67cc8c6c3e3cf72dc4e964360fb2829c68fda5dcf10ca4a96ea5", + "viewable_document_id": 806382615 + }, + { + "id": 5255514945, + "content_type": "application/pdf", + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "source_prostore_file_id": 5255514945, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRK7260SK0FCS1XR9Y7R3T?companyId=8089&projectId=2563870&sig=9b298efe63e35c1750ec7ad47e41fbf4b8ee198872755e80d3c9892ff05579c3", + "viewable_document_id": 806382591 + }, + { + "id": 5255514682, + "content_type": "application/pdf", + "filename": "33 10 00-1.0 - Fire Hydrants_water distribution_PD_reviewed.pdf", + "source_prostore_file_id": 5255514682, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMMRK37FTQGZZZJ0T4RM9WEH?companyId=8089&projectId=2563870&sig=83d81182252b44a6ccea54d87d583d65bb70a373687b74bb3d657008657b7d9b", + "viewable_document_id": 806382716 + } + ], + "response_name": "Approved", + "submittal_approver_id": 147813838, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + } + ], + "message": "", + "sent_at": "2025-02-21T21:56:53Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787885, + "current_revision_id": 45045045, + "description": "Fire Hydrants", + "label": "33 10 00 - Fire Hydrants", + "number": "33 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Water Distribution (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60605042, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147813845, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135388783, + "additional_page_count": 0, + "attached_at": "2025-02-28T23:07:39Z", + "attachment_id": 5272035701, + "content_type": "application/pdf", + "document_markup_layer_id": 60078432, + "filename": "33 40 00-1.0 - Storm Pipe & Appurtenances_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-28T23:07:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN7D0FPC94Q3S28MGHD74DAS?companyId=8089&projectId=2563870&sig=c665257565e1c6189593afbd42b7de398e3c528969aa402aa7502e44cab449e2", + "version_timestamp": "2025-02-28T23:07:39Z" + } + ], + "comment": "See attached for Civil review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-02-28", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 6, + "workflow_group_number": 2 + }, + { + "id": 147813848, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813843, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134116469, + "additional_page_count": 0, + "attached_at": "2025-02-05T14:22:41Z", + "attachment_id": 5219904179, + "content_type": "application/pdf", + "document_markup_layer_id": 58985529, + "filename": "33 40 00 1.0 - Storm Pipe & Appurtenances.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-05T14:22:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB7V7EQFNEPPNNBTKYXYC1F?companyId=8089&projectId=2563870&sig=e020a187f044943af7392ddd287b4e359374adea3892ca94652e4424b2312424", + "version_timestamp": "2025-02-05T14:22:41Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147813844, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147823822, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134066776, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:01:40Z", + "attachment_id": 5217768898, + "content_type": "application/pdf", + "document_markup_layer_id": 58935415, + "filename": "334000 - Storm Pipe & Appurtenances.pdf", + "markup_updated_at": "2025-02-04T20:17:37Z", + "state": "excluded", + "updated_at": "2025-02-04T18:01:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK91W3NY6SRGTNQB4W08KNFB?companyId=8089&projectId=2563870&sig=27651eaa6ac6c576c3051a021fd5b12f5f07ec9374702874344feac5ff921a7c", + "version_timestamp": "2025-02-04T18:01:40Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-29T14:01:27Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-03T13:59:06Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "33 40 00-1", + "issue_date": "2025-01-29", + "last_distributed_submittal": { + "id": 26236498, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36746385, + "comment": "See attached for Civil review comments.
", + "distributed_attachments": [ + { + "id": 5272035701, + "content_type": "application/pdf", + "filename": "33 40 00-1.0 - Storm Pipe & Appurtenances_PD_reviewed.pdf", + "source_prostore_file_id": 5272035701, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN7D0FPC94Q3S28MGHD74DAS?companyId=8089&projectId=2563870&sig=c665257565e1c6189593afbd42b7de398e3c528969aa402aa7502e44cab449e2", + "viewable_document_id": 809362612 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 147813845, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please resubmit based off engineer comments.
", + "sent_at": "2025-03-03T13:59:06Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Storm Water Piping (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60605235, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147813856, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135168102, + "additional_page_count": 0, + "attached_at": "2025-02-25T21:00:53Z", + "attachment_id": 5262857038, + "content_type": "application/pdf", + "document_markup_layer_id": 59877046, + "filename": "33 05 50-1.0 - Utility Piping, Valves & Appurtenances_PD_Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-25T21:00:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZEJNTGRTPP87M71Z6YRKA9?companyId=8089&projectId=2563870&sig=ab74a1521306115a950c79ff4da9901001318d9ed77fcacc8b1d196bfe30c2a3", + "version_timestamp": "2025-02-25T21:00:53Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": "2025-02-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 147992659, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813859, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813854, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134184502, + "additional_page_count": 0, + "attached_at": "2025-02-06T13:57:37Z", + "attachment_id": 5222709516, + "content_type": "application/pdf", + "document_markup_layer_id": 59038716, + "filename": "33 05 50 1.0 - Wastewater Pipe & Appurtenances.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-06T13:57:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDRT1FQ2X3HHG8AK8S2KXRG?companyId=8089&projectId=2563870&sig=37ea35fcfd2adb91e6a37d017f55f41771f83941222f0b97d2d79b44c065ec15", + "version_timestamp": "2025-02-06T13:57:37Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 147813855, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147823887, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134066973, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:04:02Z", + "attachment_id": 5217781969, + "content_type": "application/pdf", + "document_markup_layer_id": 58974796, + "filename": "330550 - Wastewater Pipe & Appurtenances.pdf", + "markup_updated_at": "2025-02-05T19:00:21Z", + "state": "excluded", + "updated_at": "2025-02-04T18:04:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK92425JTEN8NHWSR94EZNGJ?companyId=8089&projectId=2563870&sig=0fb12f5cc9d683a35793aa2232709989e21bfc20b58db52b38441ce9cdb8e915", + "version_timestamp": "2025-02-04T18:04:02Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-29T14:05:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-25T21:13:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-24", + "formatted_number": "33 05 50-1", + "issue_date": "2025-01-29", + "last_distributed_submittal": { + "id": 26177149, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36656263, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5262857038, + "content_type": "application/pdf", + "filename": "33 05 50-1.0 - Utility Piping, Valves & Appurtenances_PD_Reviewed.pdf", + "source_prostore_file_id": 5262857038, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZEJNTGRTPP87M71Z6YRKA9?companyId=8089&projectId=2563870&sig=ab74a1521306115a950c79ff4da9901001318d9ed77fcacc8b1d196bfe30c2a3", + "viewable_document_id": 807657352 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147813856, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please release materials as noted on returned submittal. Provide lead time for material not readily available.
", + "sent_at": "2025-02-25T21:13:33Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Utility Piping, Valves, and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60605585, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147813864, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134408783, + "additional_page_count": 0, + "attached_at": "2025-02-11T15:02:27Z", + "attachment_id": 5232177743, + "content_type": "application/pdf", + "document_markup_layer_id": 59227757, + "filename": "33 05 00-1.0 - Backfill and Bedding_PD_Reviewed 2-10.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-11T15:02:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTRGCE68RT51YXQN8QJA087?companyId=8089&projectId=2563870&sig=5dd026510b193d0caee2497e83c1ea62434b09d5753f92500f0e83a006a730c9", + "version_timestamp": "2025-02-11T15:02:27Z" + } + ], + "comment": "See attached pdf for submittal review.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-11", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 147813867, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147813862, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134141519, + "additional_page_count": 0, + "attached_at": "2025-02-05T18:39:25Z", + "attachment_id": 5220921806, + "content_type": "application/pdf", + "document_markup_layer_id": 59001436, + "filename": "33 05 00 1.0 - Backfill & Bedding.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-05T18:39:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKBPHFZ6PKPCSZSZ5ZPD0S4B?companyId=8089&projectId=2563870&sig=ccbc74514e859f0444f1b6835ea2af236d137dac8f1027f11a7c8befbdf13ca7", + "version_timestamp": "2025-02-05T18:39:25Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147813863, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147824006, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134066893, + "additional_page_count": 1, + "attached_at": "2025-02-04T18:03:06Z", + "attachment_id": 5217778877, + "content_type": "application/pdf", + "document_markup_layer_id": 58935501, + "filename": "330500 - Backfill & Bedding.pdf", + "markup_updated_at": "2025-02-05T18:20:32Z", + "state": "excluded", + "updated_at": "2025-02-04T18:03:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK922FJQYWXNF6X67ZJA0SMA?companyId=8089&projectId=2563870&sig=0b8a1645b704acab1d85d3e6a2020c6aac797fb6300629c5adf222a290aac168", + "version_timestamp": "2025-02-04T18:03:06Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-04", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-29T14:15:30Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-11T17:49:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "33 05 00-1", + "issue_date": "2025-01-29", + "last_distributed_submittal": { + "id": 25990144, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36378382, + "comment": "See attached pdf for submittal review.
", + "distributed_attachments": [ + { + "id": 5232177743, + "content_type": "application/pdf", + "filename": "33 05 00-1.0 - Backfill and Bedding_PD_Reviewed 2-10.pdf", + "source_prostore_file_id": 5232177743, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTRGCE68RT51YXQN8QJA087?companyId=8089&projectId=2563870&sig=5dd026510b193d0caee2497e83c1ea62434b09d5753f92500f0e83a006a730c9", + "viewable_document_id": 802255277 + } + ], + "response_name": "Approved", + "submittal_approver_id": 147813864, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See returned approved submittal.
", + "sent_at": "2025-02-11T17:49:33Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788339, + "current_revision_id": 45045692, + "description": "Backfill and Bedding", + "label": "33 05 00 - Backfill and Bedding", + "number": "33 05 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Backfill and Bedding (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60644679, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147443813, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134666465, + "additional_page_count": 0, + "attached_at": "2025-02-14T21:49:30Z", + "attachment_id": 5242233542, + "content_type": "application/pdf", + "document_markup_layer_id": 59444225, + "filename": "26 24 13-1.1 - Switchboards - ACR_HMG Combined Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-14T21:49:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM36YMFM1FA1D3WGDJEPGD44?companyId=8089&projectId=2563870&sig=68cb6a111c0ea2320662ac10c1d32c944d889b36f8e698b5d6c5972b87fcedf8", + "version_timestamp": "2025-02-14T21:49:30Z" + }, + { + "id": 134049831, + "additional_page_count": 0, + "attached_at": "2025-02-04T15:17:07Z", + "attachment_id": 5217048887, + "content_type": "application/pdf", + "document_markup_layer_id": 58919832, + "filename": "26 24 13 - 1.0 - Switchboards - Response #02R.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-04T15:17:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK8RJ09ZB2FS1PBVQC3R8208?companyId=8089&projectId=2563870&sig=14d297160e2c9dbeb5c7311e94a06c6f35d23652b188b515d39517e87f519cbc", + "version_timestamp": "2025-02-04T15:17:07Z" + } + ], + "comment": "See attached pdf for updated submittal review comments.\u00a0 ACR comments added.", + "days_to_respond": 5, + "due_date": "2025-02-21", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-14", + "sent_date": "2025-01-30", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 147443814, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-30", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147443812, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-01-30", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147443811, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 133834046, + "additional_page_count": 1, + "attached_at": "2025-01-30T16:07:18Z", + "attachment_id": 5208108860, + "content_type": "application/pdf", + "document_markup_layer_id": 58737959, + "filename": "GMP 001 - 26 24 13 - 1.1 - Swithboards (MSB 1).pdf", + "markup_updated_at": "2025-01-30T16:10:58Z", + "state": "excluded", + "updated_at": "2025-01-30T16:10:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJVZERDS6Z4RX967QP12RFPT?companyId=8089&projectId=2563870&sig=716a3b40476c02f68799cb9621ac59aebf8cfb90b58043884ea18399019946b8", + "version_timestamp": "2025-01-30T16:10:58Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-01-30", + "sent_date": "2025-01-30", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147443810, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 133833734, + "additional_page_count": 1, + "attached_at": "2025-01-30T16:07:18Z", + "attachment_id": 5208108860, + "content_type": "application/pdf", + "document_markup_layer_id": 58737959, + "filename": "GMP 001 - 26 24 13 - 1.1 - Swithboards (MSB 1).pdf", + "markup_updated_at": "2025-01-30T16:10:58Z", + "state": "outdated", + "updated_at": "2025-01-30T16:07:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JJVZERDS6Z4RX967QP12RFPT?companyId=8089&projectId=2563870&sig=716a3b40476c02f68799cb9621ac59aebf8cfb90b58043884ea18399019946b8", + "version_timestamp": "2025-01-30T16:07:18Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-01-30", + "sent_date": null, + "user": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-01-30T16:06:54Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": { + "id": 58617, + "label": "2 - Medium" + } + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-02-17T19:50:48Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-02-21", + "formatted_number": "26 24 13-1", + "issue_date": "2025-01-30", + "last_distributed_submittal": { + "id": 26062464, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36487418, + "comment": "See attached pdf for updated submittal review comments.\u00a0 ACR comments added.
", + "distributed_attachments": [], + "response_name": "Approved as Noted", + "submittal_approver_id": 147443813, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13084111, + "initials": "JW", + "name": "Jackson West", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "ACR's comments are being addressed with design team
", + "sent_at": "2025-02-17T19:50:48Z" + }, + "lead_time": 245, + "linked_drawing_ids": [], + "location_id": 31261558, + "number": "1", + "private": false, + "received_date": "2024-12-06", + "received_from": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "required_on_site_date": "2025-10-16", + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037839, + "current_revision_id": 45441306, + "description": "Switchboards", + "label": "26 24 13 - Switchboards", + "number": "26 24 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331577 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2024-12-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "MSB1 Switchboard ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-27T16:20:34Z" + }, + { + "id": 60730588, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147742231, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134799059, + "additional_page_count": 0, + "attached_at": "2025-02-18T20:55:39Z", + "attachment_id": 5247806567, + "content_type": "application/pdf", + "document_markup_layer_id": 59563128, + "filename": "03 30 00-7.0 - Cast in place concrete_Bldg C Foundation_SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-18T20:55:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMDDG37SKWKFEERDVK3FK77F?companyId=8089&projectId=2563870&sig=ad60db65d362a52cd978ff2e10f1c7e241462977bfe36e5076bda27b0b0112a3", + "version_timestamp": "2025-02-18T20:55:39Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-02-18", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-18", + "sent_date": "2025-02-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 147742230, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-11", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147742227, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134410002, + "additional_page_count": 0, + "attached_at": "2025-02-11T15:14:21Z", + "attachment_id": 5232239340, + "content_type": "application/pdf", + "document_markup_layer_id": 59228748, + "filename": "03 30 00 7.0 - Building C Foundation, SOG, SOF Rebar Shop Drawings Combined.pdf", + "markup_updated_at": "2025-02-11T15:16:12Z", + "state": "excluded", + "updated_at": "2025-02-11T15:16:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTS6AZ1A6QADTHGZARTY797?companyId=8089&projectId=2563870&sig=67efd7bd34532e10ee3c92e2857faf0a5f58e7e427fcdcb4d6ae85058b6f667b", + "version_timestamp": "2025-02-11T15:16:12Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-20", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-11", + "sent_date": "2025-02-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147742228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147742226, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134010737, + "additional_page_count": 1, + "attached_at": "2025-02-03T20:50:12Z", + "attachment_id": 5215388749, + "content_type": "application/pdf", + "document_markup_layer_id": 59068690, + "filename": "03 30 00 7.0 - Building C Foundation, SOG, SOF Rebar Shop Drawings Combined.pdf", + "markup_updated_at": "2025-02-06T20:14:11Z", + "state": "excluded", + "updated_at": "2025-02-03T20:50:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6S77Q2Y4G62SSWRMG7V7SY?companyId=8089&projectId=2563870&sig=cf086c9a2f3af3307354e4dae0165c186364a661c18e0ceee8c8e4219874d704", + "version_timestamp": "2025-02-03T20:50:12Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-03", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-03T20:48:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-18T21:15:19Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-18", + "formatted_number": "033000-7", + "issue_date": "2025-02-03", + "last_distributed_submittal": { + "id": 26083265, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36518025, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5247806567, + "content_type": "application/pdf", + "filename": "03 30 00-7.0 - Cast in place concrete_Bldg C Foundation_SD_STR.pdf", + "source_prostore_file_id": 5247806567, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMDDG37SKWKFEERDVK3FK77F?companyId=8089&projectId=2563870&sig=ad60db65d362a52cd978ff2e10f1c7e241462977bfe36e5076bda27b0b0112a3", + "viewable_document_id": 805002881 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147742231, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12256526, + "initials": "MG", + "name": "Mizael Zamora Gonzalez", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "See returned submittal approved as noted. Please revise shop drawings based on engineer comments and 100% IFC set and submit for RO records.
", + "sent_at": "2025-02-18T21:15:19Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": 31261486, + "number": "7", + "private": false, + "received_date": "2025-02-03", + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-03-17", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Building C Foundation (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-03T18:40:34Z" + }, + { + "id": 60731154, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147743267, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134219263, + "additional_page_count": 0, + "attached_at": "2025-02-06T19:57:12Z", + "attachment_id": 5224132466, + "content_type": "application/pdf", + "document_markup_layer_id": 59067459, + "filename": "03 30 00-8.0 - Cast in place concrete_Waterstops_PD_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-06T19:57:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKEDCCYG9WFYFNMQ4YF2Z9RY?companyId=8089&projectId=2563870&sig=0bfefc517d102405a4fab8cda31e6c70733349a8c68a8a44c30ffaf27eace770", + "version_timestamp": "2025-02-06T19:57:12Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 147743266, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147743268, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147743264, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134155547, + "additional_page_count": 1, + "attached_at": "2025-02-03T20:54:28Z", + "attachment_id": 5215407221, + "content_type": "application/pdf", + "document_markup_layer_id": 59009789, + "filename": "03 30 00 8.0 - Waterstops.pdf", + "markup_updated_at": "2025-02-05T20:50:32Z", + "state": "excluded", + "updated_at": "2025-02-05T20:50:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6SF8SBMY4ZQCJ1R6P27SYE?companyId=8089&projectId=2563870&sig=089489a8071ce28cb137889e7674da1fa3c6925147b8c609021e1a1675d3dfb3", + "version_timestamp": "2025-02-05T20:50:32Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 147743263, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147743262, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134011245, + "additional_page_count": 1, + "attached_at": "2025-02-03T20:54:28Z", + "attachment_id": 5215407221, + "content_type": "application/pdf", + "document_markup_layer_id": 59009789, + "filename": "03 30 00 8.0 - Waterstops.pdf", + "markup_updated_at": "2025-02-05T20:50:32Z", + "state": "outdated", + "updated_at": "2025-02-03T20:54:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6SF8SBMY4ZQCJ1R6P27SYE?companyId=8089&projectId=2563870&sig=089489a8071ce28cb137889e7674da1fa3c6925147b8c609021e1a1675d3dfb3", + "version_timestamp": "2025-02-03T20:54:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-03", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-03T20:53:55Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-06T20:05:06Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "033000-8", + "issue_date": "2025-02-03", + "last_distributed_submittal": { + "id": 25939016, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36302895, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5224132466, + "content_type": "application/pdf", + "filename": "03 30 00-8.0 - Cast in place concrete_Waterstops_PD_fgma.pdf", + "source_prostore_file_id": 5224132466, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKEDCCYG9WFYFNMQ4YF2Z9RY?companyId=8089&projectId=2563870&sig=0bfefc517d102405a4fab8cda31e6c70733349a8c68a8a44c30ffaf27eace770", + "viewable_document_id": 800804325 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147743267, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11541229, + "initials": "BP", + "name": "Bobby Perry", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12140625, + "initials": "EP", + "name": "Erik Petersen", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "Please see approved as noted submittal.
", + "sent_at": "2025-02-06T20:05:06Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": "2025-02-03", + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Waterstops (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:02:34Z" + }, + { + "id": 60732208, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147744941, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134809722, + "additional_page_count": 0, + "attached_at": "2025-02-18T22:41:40Z", + "attachment_id": 5248183069, + "content_type": "application/pdf", + "document_markup_layer_id": 59570839, + "filename": "03 30 00-9.0 - Cast in place concrete_control joint_PD_fgma_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-18T22:41:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMDKJ2V2WG844Y20V45F7T23?companyId=8089&projectId=2563870&sig=4ad73ce08a4a85802572fc62ed1313a9720eafe9ceffbc057efb3d8b960b10a1", + "version_timestamp": "2025-02-18T22:41:40Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-02-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-18", + "sent_date": "2025-02-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 147744940, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147744938, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134187339, + "additional_page_count": 0, + "attached_at": "2025-02-06T14:35:26Z", + "attachment_id": 5222826497, + "content_type": "application/pdf", + "document_markup_layer_id": 59039255, + "filename": "03 30 00 9.0 - Keyload EJ Combined.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-06T14:35:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDTZBTYXZAH6YD126Z944JJ?companyId=8089&projectId=2563870&sig=fd7c76f542c98cd96cb50b2892e73b88e08f5a417266ab0012bfd098fb237697", + "version_timestamp": "2025-02-06T14:35:26Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-17", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147744937, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147744936, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134187062, + "additional_page_count": 1, + "attached_at": "2025-02-06T14:31:39Z", + "attachment_id": 5222812483, + "content_type": "application/pdf", + "document_markup_layer_id": 59038607, + "filename": "03 30 00 9.0 - Keyload EJ Combined.pdf", + "markup_updated_at": "2025-02-06T14:32:39Z", + "state": "excluded", + "updated_at": "2025-02-06T14:31:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDTRDPGMYT6SCXJ4V0QRS61?companyId=8089&projectId=2563870&sig=bb1adbead027ce87cd33c620fec3380417e503be1c04c6e664a1b59cf5566287", + "version_timestamp": "2025-02-06T14:31:39Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -7, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-03T21:03:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-19T16:50:24Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-26", + "formatted_number": "033000-9", + "issue_date": "2025-02-03", + "last_distributed_submittal": { + "id": 26095445, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36536611, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5248183069, + "content_type": "application/pdf", + "filename": "03 30 00-9.0 - Cast in place concrete_control joint_PD_fgma_STR.pdf", + "source_prostore_file_id": 5248183069, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMDKJ2V2WG844Y20V45F7T23?companyId=8089&projectId=2563870&sig=4ad73ce08a4a85802572fc62ed1313a9720eafe9ceffbc057efb3d8b960b10a1", + "viewable_document_id": 805060276 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147744941, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12256526, + "initials": "MG", + "name": "Mizael Zamora Gonzalez", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "See attached submittal. Please submit product data as specified by architect.
", + "sent_at": "2025-02-19T16:50:24Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-04-09", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Control Joint (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:01:17Z" + }, + { + "id": 60732440, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147747067, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134190428, + "additional_page_count": 0, + "attached_at": "2025-02-06T15:08:24Z", + "attachment_id": 5222955787, + "content_type": "application/pdf", + "document_markup_layer_id": 59041622, + "filename": "03 30 00-10.0 - Cast in place concrete_Concrete patching grout_PD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-06T15:08:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDWVK2SF3EWXEX2N9NFPTCN?companyId=8089&projectId=2563870&sig=5da61eee53dcf10ff6248d00171d44ef3ec2cdcdcf24b3aaeda9255a0bd0b690", + "version_timestamp": "2025-02-06T15:08:24Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-02-25", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -13, + "workflow_group_number": 2 + }, + { + "id": 147747068, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147747066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-02-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147747064, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134135930, + "additional_page_count": 0, + "attached_at": "2025-02-05T17:37:56Z", + "attachment_id": 5220680283, + "content_type": "application/pdf", + "document_markup_layer_id": 59001291, + "filename": "03 30 00 10.0 - Patch Materials.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-05T17:37:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKBK0PCTEHN6M0YN6F9W8KWZ?companyId=8089&projectId=2563870&sig=209be4a5f43524c1d505d761f55ab40b83d9cae50e00aa271705a5f4acc06cb9", + "version_timestamp": "2025-02-05T17:37:56Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147747063, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147747062, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134118426, + "additional_page_count": 1, + "attached_at": "2025-02-05T14:43:07Z", + "attachment_id": 5219973626, + "content_type": "application/pdf", + "document_markup_layer_id": 58989296, + "filename": "03 30 00 10.0 - Patch Materials.pdf", + "markup_updated_at": "2025-02-05T17:18:31Z", + "state": "excluded", + "updated_at": "2025-02-05T14:43:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB90X4HM7PF2A8JFECYVFFE?companyId=8089&projectId=2563870&sig=889dcca073ad8539063eacd04188d1309445a039b564c9f03a00c21fe4aca135", + "version_timestamp": "2025-02-05T14:43:07Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-03T21:07:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-06T15:26:34Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-25", + "formatted_number": "033000-10", + "issue_date": "2025-02-03", + "last_distributed_submittal": { + "id": 25931769, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36292841, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5222955787, + "content_type": "application/pdf", + "filename": "03 30 00-10.0 - Cast in place concrete_Concrete patching grout_PD_STR_fgma.pdf", + "source_prostore_file_id": 5222955787, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDWVK2SF3EWXEX2N9NFPTCN?companyId=8089&projectId=2563870&sig=5da61eee53dcf10ff6248d00171d44ef3ec2cdcdcf24b3aaeda9255a0bd0b690", + "viewable_document_id": 800603207 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147747067, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11541229, + "initials": "BP", + "name": "Bobby Perry", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12140625, + "initials": "EP", + "name": "Erik Petersen", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "Please see returned submittal.
", + "sent_at": "2025-02-06T15:26:34Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "10", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-04-14", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Concrete Patching Grout", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:00:37Z" + }, + { + "id": 60732752, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147747874, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134411179, + "additional_page_count": 0, + "attached_at": "2025-02-11T15:24:50Z", + "attachment_id": 5232278890, + "content_type": "application/pdf", + "document_markup_layer_id": 59243676, + "filename": "03 30 00-11.0 - Cast in place concrete_curing compound_PD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-11T15:24:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTSS3NT2YTNRB004PXNWQJQ?companyId=8089&projectId=2563870&sig=455da1626e1312464d556365e9f9c7af9a3e7ce1f4da77d17030b5c568392429", + "version_timestamp": "2025-02-11T15:24:50Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-11", + "sent_date": "2025-02-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 147747872, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147747868, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134062877, + "additional_page_count": 0, + "attached_at": "2025-02-04T17:18:10Z", + "attachment_id": 5217618215, + "content_type": "application/pdf", + "document_markup_layer_id": 58931702, + "filename": "03 30 00 11.0 - Curing Compound Combined.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-04T17:18:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK8ZG3Z5G45ZCX77PHFND98P?companyId=8089&projectId=2563870&sig=386c10d5a2c94d87a3de926ec928f8d7b4f0c6662357272dc935d33df3588fa2", + "version_timestamp": "2025-02-04T17:18:10Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-04", + "sent_date": "2025-02-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 147747867, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147747866, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134013370, + "additional_page_count": 1, + "attached_at": "2025-02-03T21:12:51Z", + "attachment_id": 5215482253, + "content_type": "application/pdf", + "document_markup_layer_id": 58930773, + "filename": "03 30 00 11.0 - Curing Compound Combined.pdf", + "markup_updated_at": "2025-02-04T17:07:48Z", + "state": "excluded", + "updated_at": "2025-02-03T21:12:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JK6TH1VGHX7S4C1MDSQ8CBF5?companyId=8089&projectId=2563870&sig=6bdb260fee865de9e763e21728bce5ba362f69ed83a4f426f8d45e814ea7f4b4", + "version_timestamp": "2025-02-03T21:12:51Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-03", + "sent_date": "2025-02-03", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-03T21:11:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-11T17:43:25Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "033000-11", + "issue_date": "2025-02-03", + "last_distributed_submittal": { + "id": 25990004, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36378197, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5232278890, + "content_type": "application/pdf", + "filename": "03 30 00-11.0 - Cast in place concrete_curing compound_PD_STR_fgma.pdf", + "source_prostore_file_id": 5232278890, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTSS3NT2YTNRB004PXNWQJQ?companyId=8089&projectId=2563870&sig=455da1626e1312464d556365e9f9c7af9a3e7ce1f4da77d17030b5c568392429", + "viewable_document_id": 802272594 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147747874, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9783222, + "initials": "JW", + "name": "Jeremy Woodrome", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11541229, + "initials": "BP", + "name": "Bobby Perry", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13071866, + "initials": "MG", + "name": "Misael Gonzalez", + "vendor_name": "Lithko TX, LLC" + } + ], + "message": "See submittal response.
", + "sent_at": "2025-02-11T17:43:25Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "11", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-04-11", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Curing Compound (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T13:59:59Z" + }, + { + "id": 60754831, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149636622, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135275051, + "additional_page_count": 0, + "attached_at": "2025-02-27T14:54:05Z", + "attachment_id": 5267499149, + "content_type": "application/pdf", + "document_markup_layer_id": 59967549, + "filename": "03 30 00-12.0 - Cast in place concrete_Rebar Pond B1 B2_SD - Combined Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-27T14:54:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN3YCG9KPS4F2JH4F4X8JHS3?companyId=8089&projectId=2563870&sig=101d641a4693efa29efdb90eaf0a50733c1081618aaa0170badd392cd34115f3", + "version_timestamp": "2025-02-27T14:54:05Z" + } + ], + "comment": "See attached pdf for combined submittal review.", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 149636623, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 147827537, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134876502, + "additional_page_count": 0, + "attached_at": "2025-02-19T21:04:03Z", + "attachment_id": 5250689265, + "content_type": "application/pdf", + "document_markup_layer_id": 59722442, + "filename": "03 30 00-12.0 - Cast in place concrete_Rebar Pond B1 B2_SD - Structures Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-19T21:04:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMG0C4TBAJSCTB1BBQ4CCWJR?companyId=8089&projectId=2563870&sig=0ceeee61407385e58a1b8a1ca51437869e87f0cfba3e367bbcbde26b236fdae8", + "version_timestamp": "2025-02-19T21:04:03Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 14, + "due_date": "2025-03-03", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-19", + "sent_date": "2025-02-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 147827536, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-11", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147827534, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134421287, + "additional_page_count": 0, + "attached_at": "2025-02-11T16:55:42Z", + "attachment_id": 5232644664, + "content_type": "application/pdf", + "document_markup_layer_id": 59240774, + "filename": "03 30 00 12.0 - Rebar Pond B1 and B2 (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-11T16:55:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTYZYPTQGDDZSFKR5T6EB2V?companyId=8089&projectId=2563870&sig=740447c9114afe049490cdba50b5c3a66fcbacb34ee54b50d2d07d57cc78743e", + "version_timestamp": "2025-02-11T16:55:42Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-20", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-11", + "sent_date": "2025-02-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147827533, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147827532, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134415607, + "additional_page_count": 1, + "attached_at": "2025-02-11T16:03:27Z", + "attachment_id": 5232433164, + "content_type": "application/pdf", + "document_markup_layer_id": 59236365, + "filename": "03 30 00 12.0 - Rebar Pond B1 and B2 (SD).pdf", + "markup_updated_at": "2025-02-11T16:26:29Z", + "state": "excluded", + "updated_at": "2025-02-11T16:03:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKTW08MEFD31V6SJ46J3K4N9?companyId=8089&projectId=2563870&sig=7b9012984ee3dc0b822431d21080ffad0f86e7fc01bc8981234fead2f74e2580", + "version_timestamp": "2025-02-11T16:03:27Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-11", + "sent_date": "2025-02-05", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-04T17:23:00Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-27T15:14:35Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-05", + "formatted_number": "033000-12", + "issue_date": "2025-02-04", + "last_distributed_submittal": { + "id": 26204595, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36698855, + "comment": "See attached pdf for combined submittal review.
", + "distributed_attachments": [ + { + "id": 5267499149, + "content_type": "application/pdf", + "filename": "03 30 00-12.0 - Cast in place concrete_Rebar Pond B1 B2_SD - Combined Review.pdf", + "source_prostore_file_id": 5267499149, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN3YCG9KPS4F2JH4F4X8JHS3?companyId=8089&projectId=2563870&sig=101d641a4693efa29efdb90eaf0a50733c1081618aaa0170badd392cd34115f3", + "viewable_document_id": 808528515 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149636622, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Lithko Team,
\nSee attached submittal. Please release this material based on the design team comments. Provide updated lead time time.
", + "sent_at": "2025-02-27T15:14:35Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "12", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-10", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rebar Pond B1 and B2 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-02-27T15:14:35Z" + }, + { + "id": 60754897, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151353035, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136945136, + "additional_page_count": 0, + "attached_at": "2025-03-31T17:46:16Z", + "attachment_id": 5334264232, + "content_type": "application/pdf", + "document_markup_layer_id": 61370621, + "filename": "03 30 00-13.0 - Cast in place concrete_Mechanical Yard Foundation-SD_CVL_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-31T17:46:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPMY4TFC7AWCXGY0YHQGEDA?companyId=8089&projectId=2563870&sig=7272f421eab4eae3d5d46ebd8c1d55f47b5ae49391d08360b833deb445470158", + "version_timestamp": "2025-03-31T17:46:15Z" + } + ], + "comment": "See attached response from Structural, Civil, Mechanical Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-31", + "sent_date": "2025-03-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 151353036, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 151353034, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 147827783, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136115661, + "additional_page_count": 0, + "attached_at": "2025-03-14T16:52:40Z", + "attachment_id": 5301045606, + "content_type": "application/pdf", + "document_markup_layer_id": 60667426, + "filename": "03 30 00-13.0 - Cast in place concrete_Mechanical Yard Foundation_SD_Reviewed.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-14T16:52:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPAS3670JJ1GNJ6Q3X6624XY?companyId=8089&projectId=2563870&sig=70f51661886ea2c67a17dbe95d2bf52624ffff7d7b830db345b2fb93e8335b05", + "version_timestamp": "2025-03-14T16:52:40Z" + } + ], + "comment": "See attached pdf for submittal review comments.\u00a0 GC to reference PR 003 for dumpster updates.", + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-14", + "sent_date": "2025-03-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 151140791, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147827782, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-13", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147827779, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136067558, + "additional_page_count": 0, + "attached_at": "2025-03-13T20:08:31Z", + "attachment_id": 5299064005, + "content_type": "application/pdf", + "document_markup_layer_id": 60667519, + "filename": "03 30 00 13.0 - Mechanical Yard Foundation.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-13T20:08:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8HYF64QXBZZZHY885C7AX6?companyId=8089&projectId=2563870&sig=58e2192d1160d61e25b2e0609033493e3358885340a1510b82e4c0d346e98a60", + "version_timestamp": "2025-03-13T20:08:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": "2025-02-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 147827777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149178750, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136067352, + "additional_page_count": 0, + "attached_at": "2025-03-13T20:07:02Z", + "attachment_id": 5299058639, + "content_type": "application/pdf", + "document_markup_layer_id": 60634450, + "filename": "03 30 00 13.0 - Mechanical Yard Foundation (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-13T20:07:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8HVWQ1M113DZTFF3QNKJME?companyId=8089&projectId=2563870&sig=b61c8fd9a62d3462c44a3563c1666c73587b5f42e92f8d53d45ddbf0393fa19e", + "version_timestamp": "2025-03-13T20:07:02Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": "2025-03-03", + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": -6, + "workflow_group_number": 0 + }, + { + "id": 149178749, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-03", + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 147827774, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-02-20", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-04T17:24:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-31T17:50:52Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-04-03", + "formatted_number": "033000-13", + "issue_date": "2025-02-04", + "last_distributed_submittal": { + "id": 26626381, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37321976, + "comment": "See attached response from Structural, Civil, Mechanical Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5334264232, + "content_type": "application/pdf", + "filename": "03 30 00-13.0 - Cast in place concrete_Mechanical Yard Foundation-SD_CVL_STR_FGMA.pdf", + "source_prostore_file_id": 5334264232, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPMY4TFC7AWCXGY0YHQGEDA?companyId=8089&projectId=2563870&sig=7272f421eab4eae3d5d46ebd8c1d55f47b5ae49391d08360b833deb445470158", + "viewable_document_id": 820550826 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 151353035, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "Lithko team,
\nSee returned shop drawings and furnish as noted in comments.
\n\n
Tumlinson/Victoria Air,
\nCopied for distribution. This submittal contains information for the chiller and XFMR pads.
", + "sent_at": "2025-03-31T17:50:52Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "13", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-05-13", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-19", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Yard Foundation (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-31T17:50:52Z" + }, + { + "id": 60755022, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147828131, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135549612, + "additional_page_count": 0, + "attached_at": "2025-03-04T22:57:41Z", + "attachment_id": 5278546689, + "content_type": "application/pdf", + "document_markup_layer_id": 60302189, + "filename": "03 30 00-14.0 - Cast in place concrete_Rebar and SOG Area A_PD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-04T22:57:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNHP1CP4Y77MYR4RHHEXKWTP?companyId=8089&projectId=2563870&sig=53c0eb020bc41be9cdf9fcd0fbd77a8168593ce36c03e80338fdea68ea75c1af", + "version_timestamp": "2025-03-04T22:57:41Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": "2025-02-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 147828130, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-27", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147828128, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135290439, + "additional_page_count": 0, + "attached_at": "2025-02-27T17:21:32Z", + "attachment_id": 5268092930, + "content_type": "application/pdf", + "document_markup_layer_id": 59982309, + "filename": "03 30 00 14.0 - Rebar and SOG Area A (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-27T17:21:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN46TPB0Q0CXARY70Y0R8WZ7?companyId=8089&projectId=2563870&sig=1f6dcd33d69bc3c36bf2a0bd2103b9991c2052c37b09f3f7e8493f5a6e7cf873", + "version_timestamp": "2025-02-27T17:21:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": "2025-02-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 147828127, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147828126, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135140029, + "additional_page_count": 1, + "attached_at": "2025-02-25T16:34:21Z", + "attachment_id": 5261743068, + "content_type": "application/pdf", + "document_markup_layer_id": 59859408, + "filename": "03 30 00 14.0 - Rebar and SOG Area A (SD).pdf", + "markup_updated_at": "2025-02-25T17:59:44Z", + "state": "excluded", + "updated_at": "2025-02-25T16:34:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYZAGSYRYJW7Z3JAM6E8BNQ?companyId=8089&projectId=2563870&sig=d50d75e48f77efdadb3856f0e5121312c93bbe38fc7f5f165c18e61410990d79", + "version_timestamp": "2025-02-25T16:34:21Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-06", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-20", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149179180, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149179179, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-04T17:27:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-06T19:23:05Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-13", + "formatted_number": "033000-14", + "issue_date": "2025-02-04", + "last_distributed_submittal": { + "id": 26305403, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36847357, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5278546689, + "content_type": "application/pdf", + "filename": "03 30 00-14.0 - Cast in place concrete_Rebar and SOG Area A_PD_STR.pdf", + "source_prostore_file_id": 5278546689, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNHP1CP4Y77MYR4RHHEXKWTP?companyId=8089&projectId=2563870&sig=53c0eb020bc41be9cdf9fcd0fbd77a8168593ce36c03e80338fdea68ea75c1af", + "viewable_document_id": 810572630 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147828131, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as noted in approver comments.
", + "sent_at": "2025-03-06T19:23:05Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "14", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rebar and SOG Area A (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-06T19:23:05Z" + }, + { + "id": 60755056, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147828292, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136341812, + "additional_page_count": 0, + "attached_at": "2025-03-19T16:27:35Z", + "attachment_id": 5310167744, + "content_type": "application/pdf", + "document_markup_layer_id": 60863789, + "filename": "03 30 00-15.0 - Cast in place concrete_Rebar and SOG Area B_SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-19T16:27:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQKN7V4MD8BH6AEBKYA59PM?companyId=8089&projectId=2563870&sig=5f1ec60f518eecf03375fbf7eec7d133cbc74911b7fcddaeebb6f8bc750c20ac", + "version_timestamp": "2025-03-19T16:27:35Z" + } + ], + "comment": "See attached pdf submittal review.", + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-02-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 4, + "workflow_group_number": 2 + }, + { + "id": 147828291, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-27", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147828288, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135310418, + "additional_page_count": 1, + "attached_at": "2025-02-27T20:44:23Z", + "attachment_id": 5268871205, + "content_type": "application/pdf", + "document_markup_layer_id": 59998209, + "filename": "03 30 00 - 15.0 - Rebar and SOG and Pan Deck Area B (SD).pdf", + "markup_updated_at": "2025-02-27T20:46:04Z", + "state": "excluded", + "updated_at": "2025-02-27T20:46:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN4JE2N0A9WDNSQFPGWNXZHN?companyId=8089&projectId=2563870&sig=09cf5b335b5eb0308605d123a64d1176f8d58d69e9aadd1ccc36a71736770c47", + "version_timestamp": "2025-02-27T20:46:04Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-03-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": "2025-02-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147828289, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149179302, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135310252, + "additional_page_count": 1, + "attached_at": "2025-02-27T20:44:23Z", + "attachment_id": 5268871205, + "content_type": "application/pdf", + "document_markup_layer_id": 59998209, + "filename": "03 30 00 - 15.0 - Rebar and SOG and Pan Deck Area B (SD).pdf", + "markup_updated_at": "2025-02-27T20:46:04Z", + "state": "outdated", + "updated_at": "2025-02-27T20:44:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN4JE2N0A9WDNSQFPGWNXZHN?companyId=8089&projectId=2563870&sig=09cf5b335b5eb0308605d123a64d1176f8d58d69e9aadd1ccc36a71736770c47", + "version_timestamp": "2025-02-27T20:44:23Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": -3, + "workflow_group_number": 0 + }, + { + "id": 149179303, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 147828287, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-02-12", + "sent_date": "2025-02-05", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-04T17:28:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-19T20:41:35Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-13", + "formatted_number": "033000-15", + "issue_date": "2025-02-04", + "last_distributed_submittal": { + "id": 26481058, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37107052, + "comment": "See attached pdf submittal review.
", + "distributed_attachments": [ + { + "id": 5310167744, + "content_type": "application/pdf", + "filename": "03 30 00-15.0 - Cast in place concrete_Rebar and SOG Area B_SD_STR.pdf", + "source_prostore_file_id": 5310167744, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQKN7V4MD8BH6AEBKYA59PM?companyId=8089&projectId=2563870&sig=5f1ec60f518eecf03375fbf7eec7d133cbc74911b7fcddaeebb6f8bc750c20ac", + "viewable_document_id": 816313902 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147828292, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11335201, + "initials": "PM", + "name": "Paco Moreno", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Lithko Team,
\nSee returned shop drawings. Please submit clean for record/field use shop drawing to RO.
", + "sent_at": "2025-03-19T20:41:35Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "15", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-10", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Rebar and SOG Area B (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-19T20:41:35Z" + }, + { + "id": 60765912, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147863388, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135302572, + "additional_page_count": 0, + "attached_at": "2025-02-27T19:32:54Z", + "attachment_id": 5268586412, + "content_type": "application/pdf", + "document_markup_layer_id": 59995208, + "filename": "33 05 50-2.0 - Wastewater Manholes and J-Boxes - SD_Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-27T19:32:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN4EAWD0NQWFGCZWTYK29GNX?companyId=8089&projectId=2563870&sig=3200aef3f36bcb998406e558498877327686a56d4eb482a5b7499b5258602fe4", + "version_timestamp": "2025-02-27T19:32:54Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-28", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": "2025-02-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 147863387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147863390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-14", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147863386, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134663828, + "additional_page_count": 0, + "attached_at": "2025-02-14T21:15:53Z", + "attachment_id": 5242157772, + "content_type": "application/pdf", + "document_markup_layer_id": 59444304, + "filename": "33 05 30 2.0 - Wastewater Manholes (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-14T21:15:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM352H7CHWEN8PDD58FEM8QX?companyId=8089&projectId=2563870&sig=7ef9d3b3f72b8edc6dbd5c96122d889b32fd040615d3ec48780886b5cc369355", + "version_timestamp": "2025-02-14T21:15:53Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-28", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-14", + "sent_date": "2025-02-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -10, + "workflow_group_number": 1 + }, + { + "id": 147863385, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147863384, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134650672, + "additional_page_count": 1, + "attached_at": "2025-02-14T19:04:06Z", + "attachment_id": 5241726769, + "content_type": "application/pdf", + "document_markup_layer_id": 59440790, + "filename": "330530 - Wastewater Manholes.pdf", + "markup_updated_at": "2025-02-14T20:47:51Z", + "state": "excluded", + "updated_at": "2025-02-14T19:04:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM2XH7ANHXVD9QZDYZQJ382J?companyId=8089&projectId=2563870&sig=fec948e5ef10ae99592479f5e406674493324d4f7ea35fa7d621dc059916b9d0", + "version_timestamp": "2025-02-14T19:04:06Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-14", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -6, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-04T20:33:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-27T20:11:12Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-28", + "formatted_number": "33 05 50-2", + "issue_date": "2025-02-04", + "last_distributed_submittal": { + "id": 26212677, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36709774, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5268586412, + "content_type": "application/pdf", + "filename": "33 05 50-2.0 - Wastewater Manholes and J-Boxes - SD_Reviewed.pdf", + "source_prostore_file_id": 5268586412, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN4EAWD0NQWFGCZWTYK29GNX?companyId=8089&projectId=2563870&sig=3200aef3f36bcb998406e558498877327686a56d4eb482a5b7499b5258602fe4", + "viewable_document_id": 808719320 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 147863388, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + } + ], + "message": "WPM,
\nSee returned submittal. Please resubmit based off engineer comments.
", + "sent_at": "2025-02-27T20:11:12Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-05", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wasterwater Manholes and J-boxes (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 60783062, + "actual_delivery_date": null, + "approvers": [ + { + "id": 147928561, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134190695, + "additional_page_count": 0, + "attached_at": "2025-02-06T15:11:00Z", + "attachment_id": 5222965582, + "content_type": "application/pdf", + "document_markup_layer_id": 59041898, + "filename": "03 30 00-16.0 - Cast in place concrete_non-shrink grout_PD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-06T15:11:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDX0CJDH17MANGM83R83AH1?companyId=8089&projectId=2563870&sig=9ac8396b8dfa80b02229ba118dace817f3d35c926670f68f7a47a1a9cdb9eb3e", + "version_timestamp": "2025-02-06T15:11:00Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-06", + "sent_date": "2025-02-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 147928560, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147928562, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 8100632, + "name": "Rebecca Richter" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 147928559, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134143456, + "additional_page_count": 0, + "attached_at": "2025-02-05T18:59:16Z", + "attachment_id": 5220997696, + "content_type": "application/pdf", + "document_markup_layer_id": 59002129, + "filename": "03 30 00 -16.0 - Non-shrink Grout.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-05T18:59:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKBQNTWRFSR17NN23D5V0CH5?companyId=8089&projectId=2563870&sig=d328b79cd8c2767649d87692f117fa3902ac49132ce7a5ae69d2e22f8bd473e6", + "version_timestamp": "2025-02-05T18:59:16Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-02-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-05", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 1 + }, + { + "id": 147928558, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-02-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-05", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 147928557, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134118928, + "additional_page_count": 1, + "attached_at": "2025-02-05T14:48:09Z", + "attachment_id": 5219993231, + "content_type": "application/pdf", + "document_markup_layer_id": 59000805, + "filename": "03 30 00 -16.0 - Non-shrink Grout.pdf", + "markup_updated_at": "2025-02-05T18:45:04Z", + "state": "excluded", + "updated_at": "2025-02-05T14:48:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKB9A07D12JHER2HC5H8AW6M?companyId=8089&projectId=2563870&sig=cb8209594d4fe39306f3d8065312f292d7371d1e73531a2099893e27b17ca837", + "version_timestamp": "2025-02-05T14:48:09Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-02-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-05", + "sent_date": "2025-02-05", + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -14, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-05T14:45:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-06T15:22:02Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-20", + "formatted_number": "033000-16", + "issue_date": "2025-02-05", + "last_distributed_submittal": { + "id": 25931650, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36292695, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5222965582, + "content_type": "application/pdf", + "filename": "03 30 00-16.0 - Cast in place concrete_non-shrink grout_PD_STR.pdf", + "source_prostore_file_id": 5222965582, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKDX0CJDH17MANGM83R83AH1?companyId=8089&projectId=2563870&sig=9ac8396b8dfa80b02229ba118dace817f3d35c926670f68f7a47a1a9cdb9eb3e", + "viewable_document_id": 800604925 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 147928561, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please see attached returned submittal.
", + "sent_at": "2025-02-06T15:22:02Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "16", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-04-14", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Non-shrink Grout (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:00:11Z" + }, + { + "id": 60856587, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148185411, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134663929, + "additional_page_count": 0, + "attached_at": "2025-02-14T21:16:40Z", + "attachment_id": 5242158546, + "content_type": "application/pdf", + "document_markup_layer_id": 59443698, + "filename": "05 12 00-5.0 Area AN Steel Framing - Structures Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-14T21:16:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM3534ZD8KF40X96PD71CNR0?companyId=8089&projectId=2563870&sig=6a06046bfab13e526a1d2aa7f62cc2db025812490df9bb8a9e3fae86a5e2388f", + "version_timestamp": "2025-02-14T21:16:40Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-02-14", + "sent_date": "2025-02-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 148185410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-07", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148185409, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134278929, + "additional_page_count": 0, + "attached_at": "2025-02-07T18:34:07Z", + "attachment_id": 5226573437, + "content_type": "application/pdf", + "document_markup_layer_id": 59170956, + "filename": "05 12 00 5.0 - Area AN Structural Steel Framing.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-07T18:34:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGV0XMWE0J1SMWHEQXF9K0R?companyId=8089&projectId=2563870&sig=71a70a0fcb5c515f623d42a16bb6b70d31d10bfd27b839f68a8c5649e2a8e520", + "version_timestamp": "2025-02-07T18:34:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-14", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": "2025-02-07", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148185408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-07", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148185407, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134262474, + "additional_page_count": 1, + "attached_at": "2025-02-07T15:42:27Z", + "attachment_id": 5225941354, + "content_type": "application/pdf", + "document_markup_layer_id": 59113560, + "filename": "05 12 00 5.0 - Area AN Structural Steel Framing.pdf", + "markup_updated_at": "2025-02-07T18:30:08Z", + "state": "excluded", + "updated_at": "2025-02-07T15:42:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGH5VGMQ0CH24FRJM6Y0QR8?companyId=8089&projectId=2563870&sig=c6425137088d161e929d0fc10e57bf416a2179409e6a53490d6ddc00664f5ed6", + "version_timestamp": "2025-02-07T15:42:27Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-07T15:33:17Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-17T14:04:18Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-21", + "formatted_number": "051200-5", + "issue_date": "2025-02-07", + "last_distributed_submittal": { + "id": 26054306, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36476326, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5242158546, + "content_type": "application/pdf", + "filename": "05 12 00-5.0 Area AN Steel Framing - Structures Reviewed.pdf", + "source_prostore_file_id": 5242158546, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM3534ZD8KF40X96PD71CNR0?companyId=8089&projectId=2563870&sig=6a06046bfab13e526a1d2aa7f62cc2db025812490df9bb8a9e3fae86a5e2388f", + "viewable_document_id": 803978331 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 148185411, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See submittal marked revise and resubmit. Make revisions based of 100% IFC documents.
", + "sent_at": "2025-02-17T14:04:18Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-04", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area AN Structural Steel Framing (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:03Z" + }, + { + "id": 60856634, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148185519, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134557747, + "additional_page_count": 0, + "attached_at": "2025-02-13T14:40:14Z", + "attachment_id": 5237958325, + "content_type": "application/pdf", + "document_markup_layer_id": 59354792, + "filename": "05 12 00-6.0 Area CE Steel Framing_Structures_fgma Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-13T14:40:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKZW11MCR9R5SKDF1T44HEFE?companyId=8089&projectId=2563870&sig=d82c02c9568cb50f35627208289020dd8add1ac5959351f3bb0cf757ed25892d", + "version_timestamp": "2025-02-13T14:40:14Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-13", + "sent_date": "2025-02-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 148185518, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-07", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148185516, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134279121, + "additional_page_count": 1, + "attached_at": "2025-02-07T18:33:24Z", + "attachment_id": 5226571374, + "content_type": "application/pdf", + "document_markup_layer_id": 59113977, + "filename": "05 12 00 - 06 - Area CE Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-02-07T18:36:39Z", + "state": "excluded", + "updated_at": "2025-02-07T18:36:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGTZWSZB277H9E6XSVNZ9PA?companyId=8089&projectId=2563870&sig=88dd7f62d7177cf171295fb64d467abee3e91c61c241d1a5b3adb373c97fc7b6", + "version_timestamp": "2025-02-07T18:36:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": "2025-02-07", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148185517, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-07", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148185515, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134278877, + "additional_page_count": 1, + "attached_at": "2025-02-07T18:33:24Z", + "attachment_id": 5226571374, + "content_type": "application/pdf", + "document_markup_layer_id": 59113977, + "filename": "05 12 00 - 06 - Area CE Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-02-07T18:36:39Z", + "state": "outdated", + "updated_at": "2025-02-07T18:33:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKGTZWSZB277H9E6XSVNZ9PA?companyId=8089&projectId=2563870&sig=88dd7f62d7177cf171295fb64d467abee3e91c61c241d1a5b3adb373c97fc7b6", + "version_timestamp": "2025-02-07T18:33:24Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-07", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-07T15:34:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-13T16:35:43Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-21", + "formatted_number": "051200-6", + "issue_date": "2025-02-07", + "last_distributed_submittal": { + "id": 26025889, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36432722, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5237958325, + "content_type": "application/pdf", + "filename": "05 12 00-6.0 Area CE Steel Framing_Structures_fgma Reviewed.pdf", + "source_prostore_file_id": 5237958325, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKZW11MCR9R5SKDF1T44HEFE?companyId=8089&projectId=2563870&sig=d82c02c9568cb50f35627208289020dd8add1ac5959351f3bb0cf757ed25892d", + "viewable_document_id": 803256535 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148185519, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 2160786, + "initials": "JF", + "name": "Joseph Francis", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See attached submittal marked approved as noted. Please make noted revisions and proceed with production.
", + "sent_at": "2025-02-13T16:35:43Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-04-17", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area CE Stuctural Steel Framing (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-31T16:29:03Z" + }, + { + "id": 60856739, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148185739, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136740328, + "additional_page_count": 0, + "attached_at": "2025-03-26T19:37:30Z", + "attachment_id": 5325970075, + "content_type": "application/pdf", + "document_markup_layer_id": 61240455, + "filename": "05 12 00-7.0 - Area B Structural Steel Seq 5 - SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-26T19:37:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ9ZAKMA5VMZV5YSQWBJSYV9?companyId=8089&projectId=2563870&sig=41ee3391b19bc073ac33c0a8b0ee1d09a26daed933a49eccfe5203b0018e5d22", + "version_timestamp": "2025-03-26T19:37:30Z" + }, + { + "id": 136722045, + "additional_page_count": 0, + "attached_at": "2025-03-26T16:53:44Z", + "attachment_id": 5325315795, + "content_type": "application/pdf", + "document_markup_layer_id": 61194372, + "filename": "05 12 00-7.0 - Area B Structural Steel Seq 5 - SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-26T16:53:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ9NZB9Q47A4AT7YS2AFY8QJ?companyId=8089&projectId=2563870&sig=58a4418ab4c2d731fc52a5bac53a872226ec443386baf55867b7a7b6939903e2", + "version_timestamp": "2025-03-26T16:53:44Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-02", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-26", + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 148185738, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150834715, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148185737, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136326639, + "additional_page_count": 0, + "attached_at": "2025-03-19T14:06:02Z", + "attachment_id": 5309553728, + "content_type": "application/pdf", + "document_markup_layer_id": 60854964, + "filename": "05 12 00 7.0 - Area B Structural Steel Sequence 5 (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-19T14:06:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQBJGGFV0WF1HNSMRN6G9M8?companyId=8089&projectId=2563870&sig=4cc05e1e3a4610e0b019c3fd96ebd4de0b9745e13b5711b88e6c1f1dcb4d25de", + "version_timestamp": "2025-03-19T14:06:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": 1, + "workflow_group_number": 1 + }, + { + "id": 148185736, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148185735, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135870205, + "additional_page_count": 1, + "attached_at": "2025-03-11T13:05:29Z", + "attachment_id": 5291355803, + "content_type": "application/pdf", + "document_markup_layer_id": 60839247, + "filename": "05 12 00 7.0 - Area B Structural Steel Sequence 5 (SD).pdf", + "markup_updated_at": "2025-03-19T14:03:23Z", + "state": "excluded", + "updated_at": "2025-03-11T13:05:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP2MYD0FC9ZX3Y1JD8JCKN46?companyId=8089&projectId=2563870&sig=1411ca4747f2bb6b1cf023b96c4b425c3ef25ca965977ad94359beb0f7a1ce13", + "version_timestamp": "2025-03-11T13:05:29Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-11", + "sent_date": "2025-03-10", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 12, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-07T15:36:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-27T15:40:11Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-04-02", + "formatted_number": "051200-7", + "issue_date": "2025-02-07", + "last_distributed_submittal": { + "id": 26587123, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37264553, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5325315795, + "content_type": "application/pdf", + "filename": "05 12 00-7.0 - Area B Structural Steel Seq 5 - SD_STR_fgma.pdf", + "source_prostore_file_id": 5325315795, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ9NZB9Q47A4AT7YS2AFY8QJ?companyId=8089&projectId=2563870&sig=58a4418ab4c2d731fc52a5bac53a872226ec443386baf55867b7a7b6939903e2", + "viewable_document_id": 819000861 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148185739, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron, see submittal and provide calculations.
", + "sent_at": "2025-03-27T15:40:11Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-07-03", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B Structural Steel Sequence 5 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-17T19:52:03Z" + }, + { + "id": 60856919, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148186082, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134557621, + "additional_page_count": 0, + "attached_at": "2025-02-13T14:39:12Z", + "attachment_id": 5237954739, + "content_type": "application/pdf", + "document_markup_layer_id": 59354335, + "filename": "05 12 00-8.0 Area CW Steel Framing_Structures Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-13T14:39:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKZVYYR803Q702E6GFPFZ55Z?companyId=8089&projectId=2563870&sig=edbac493de00b229c0da6890b319cd2f33402e04a8af71f8a8207080a09cf662", + "version_timestamp": "2025-02-13T14:39:12Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-13", + "sent_date": "2025-02-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 148186081, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148186080, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134309248, + "additional_page_count": 0, + "attached_at": "2025-02-08T17:13:35Z", + "attachment_id": 5227836200, + "content_type": "application/pdf", + "document_markup_layer_id": 59159824, + "filename": "05 12 00 8.0 - Area CW Structural Steel Framing (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-08T17:13:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKK8TGBGSJ2Q0TXX43X9M60X?companyId=8089&projectId=2563870&sig=42ad936959fed646c92cd4dd13b447c212760863ca9a0b6ed0d629a16ff3166a", + "version_timestamp": "2025-02-08T17:13:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-17", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-08", + "sent_date": "2025-02-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148186079, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148186078, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134308461, + "additional_page_count": 1, + "attached_at": "2025-02-08T14:34:28Z", + "attachment_id": 5227764791, + "content_type": "application/pdf", + "document_markup_layer_id": 59134898, + "filename": "05 12 00 8.0 - Area CW Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-02-08T14:42:39Z", + "state": "excluded", + "updated_at": "2025-02-08T14:34:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKJZPFMZ9MKM10K7HD547JVZ?companyId=8089&projectId=2563870&sig=89e6c94ce752062133670ca242ef7e9afb113294d278ecd067c77dcea709a1eb", + "version_timestamp": "2025-02-08T14:34:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-08", + "sent_date": "2025-02-07", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -9, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-07T15:39:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-13T16:37:58Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-24", + "formatted_number": "051200-8", + "issue_date": "2025-02-07", + "last_distributed_submittal": { + "id": 26025964, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36432834, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5237954739, + "content_type": "application/pdf", + "filename": "05 12 00-8.0 Area CW Steel Framing_Structures Reviewed.pdf", + "source_prostore_file_id": 5237954739, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKZVYYR803Q702E6GFPFZ55Z?companyId=8089&projectId=2563870&sig=edbac493de00b229c0da6890b319cd2f33402e04a8af71f8a8207080a09cf662", + "viewable_document_id": 803256628 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148186082, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 2160786, + "initials": "JF", + "name": "Joseph Francis", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See attached submittal marked approved as noted. Please make noted revisions and proceed with production.
", + "sent_at": "2025-02-13T16:37:58Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-04-17", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area CW Structural Steel Framing (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-02-26T14:09:54Z" + }, + { + "id": 60898107, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148322133, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135836199, + "additional_page_count": 0, + "attached_at": "2025-03-10T19:42:30Z", + "attachment_id": 5289940089, + "content_type": "application/pdf", + "document_markup_layer_id": 60433777, + "filename": "14 21 23-3.1 - MRL Elevator_PD_STR_fgma_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-10T19:42:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP0S8A650F01R3RC8X9FWNM1?companyId=8089&projectId=2563870&sig=a94c7867900980d9425e07b8d7fec19498b419325575128714789eb0813c68ed", + "version_timestamp": "2025-03-10T19:42:30Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-10", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-10", + "sent_date": "2025-02-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 148322132, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-24", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148322131, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135093855, + "additional_page_count": 0, + "attached_at": "2025-02-24T21:29:43Z", + "attachment_id": 5259966251, + "content_type": "application/pdf", + "document_markup_layer_id": 59842587, + "filename": "14 21 23 3.1 - MRL Traction Elevator Submittal.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-24T21:29:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMWXTHYAJ6BMPK0T5BTNKZK8?companyId=8089&projectId=2563870&sig=a0935e755d5c7944d88fb06edd3cdd985149f8341f3d45815889cd3e12b4e7ef", + "version_timestamp": "2025-02-24T21:29:43Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-27", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-24", + "sent_date": "2025-02-20", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 148322130, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-20", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148322129, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134928123, + "additional_page_count": 1, + "attached_at": "2025-02-20T17:56:24Z", + "attachment_id": 5252872111, + "content_type": "application/pdf", + "document_markup_layer_id": 59809578, + "filename": "14 21 23 3.1 - MRL Traction Elevator Submittal.pdf", + "markup_updated_at": "2025-02-24T21:28:59Z", + "state": "excluded", + "updated_at": "2025-02-20T17:56:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMJ81HY84BJG50ED1X6VDYVP?companyId=8089&projectId=2563870&sig=02eb3f9431bf5f05407cde837aeaf920dbfa2767013cf239b373b553b4337752", + "version_timestamp": "2025-02-20T17:56:24Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-02-20", + "sent_date": "2025-02-20", + "user": { + "id": 8565351, + "name": "Gene aizikovich" + }, + "variance": -2, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-10T16:35:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-11T16:51:45Z", + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 6914369, + "name": "David Phelps" + }, + { + "id": 11699254, + "name": "James Peebles" + } + ], + "drawing_ids": [], + "due_date": "2025-03-10", + "formatted_number": "142123-3", + "issue_date": "2025-02-10", + "last_distributed_submittal": { + "id": 26360462, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36931337, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5289940089, + "content_type": "application/pdf", + "filename": "14 21 23-3.1 - MRL Elevator_PD_STR_fgma_H2MG.pdf", + "source_prostore_file_id": 5289940089, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP0S8A650F01R3RC8X9FWNM1?companyId=8089&projectId=2563870&sig=a94c7867900980d9425e07b8d7fec19498b419325575128714789eb0813c68ed", + "viewable_document_id": 812721507 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148322133, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8565351, + "initials": "GA", + "name": "Gene aizikovich", + "vendor_name": "Schindler Elevator Corp" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Team,
\nSee approved as noted elevator submittal. Please cross reference this submittal with RFI's during field coordination.
", + "sent_at": "2025-03-11T16:51:45Z" + }, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 8565351, + "name": "Gene aizikovich" + }, + "required_on_site_date": "2025-10-20", + "responsible_contractor": { + "id": 19201897, + "name": "Schindler Elevator Corp" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36038928, + "current_revision_id": 44089122, + "description": "Electric Traction Passenger Elevators", + "label": "142123 - Electric Traction Passenger Elevators", + "number": "142123", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777035728 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2786601, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "014.A", + "specification_section_id": null, + "submittal_ids": [ + 60293632, + 60293613, + 60898107, + 60293594 + ], + "title": "Schindler Action Submittals", + "updated_at": "2025-02-20T20:37:24Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Machine Room-less Electrical Traction Passenger Elevators (PD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-12T12:33:32Z" + }, + { + "id": 60933794, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162180574, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143541038, + "additional_page_count": 0, + "attached_at": "2025-08-07T14:02:05Z", + "attachment_id": 5609598250, + "content_type": "application/pdf", + "document_markup_layer_id": 66775699, + "filename": "26 05 33-3.0 - Raceways-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-07T14:02:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K22DABAERW1MWBHZ6JJ81FA1?companyId=8089&projectId=2563870&sig=a426ac495ca18944dcac8027d87b368e713ac4d579ffcd3f2868cb6e51f62ca6", + "version_timestamp": "2025-08-07T14:02:05Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-08-14", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-07", + "sent_date": "2025-07-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 162180571, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 10, + "due_date": "2025-08-06", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 162180573, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162180572, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162180568, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142796763, + "additional_page_count": 1, + "attached_at": "2025-07-23T15:49:18Z", + "attachment_id": 5576210588, + "content_type": "application/pdf", + "document_markup_layer_id": 66156951, + "filename": "26 05 33-2-Conduit and Coupling Product Data.pdf", + "markup_updated_at": "2025-07-23T15:58:07Z", + "state": "excluded", + "updated_at": "2025-07-23T15:58:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0VZJQPT2QE2JD5E99YKZP51?companyId=8089&projectId=2563870&sig=894d55fb393bba9ca66bd5aa82070660b845260ea0a5eb699b121c2f52d5cade", + "version_timestamp": "2025-07-23T15:58:07Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-07-23", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 162180569, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162180570, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162180565, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142795925, + "additional_page_count": 1, + "attached_at": "2025-07-23T15:49:18Z", + "attachment_id": 5576210588, + "content_type": "application/pdf", + "document_markup_layer_id": 66156951, + "filename": "26 05 33-2-Conduit and Coupling Product Data.pdf", + "markup_updated_at": "2025-07-23T15:58:07Z", + "state": "outdated", + "updated_at": "2025-07-23T15:49:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0VZJQPT2QE2JD5E99YKZP51?companyId=8089&projectId=2563870&sig=894d55fb393bba9ca66bd5aa82070660b845260ea0a5eb699b121c2f52d5cade", + "version_timestamp": "2025-07-23T15:49:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 162180567, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162180566, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-11T15:34:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-08T13:33:21Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-08-14", + "formatted_number": "26 05 33-3", + "issue_date": "2025-02-11", + "last_distributed_submittal": { + "id": 28337023, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39859044, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5609598250, + "content_type": "application/pdf", + "filename": "26 05 33-3.0 - Raceways-PD_H2MG.pdf", + "source_prostore_file_id": 5609598250, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K22DABAERW1MWBHZ6JJ81FA1?companyId=8089&projectId=2563870&sig=a426ac495ca18944dcac8027d87b368e713ac4d579ffcd3f2868cb6e51f62ca6", + "viewable_document_id": 868146297 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 162180574, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-08-08T13:33:21Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 1400265, + "name": "Justin Tumlinson" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037834, + "current_revision_id": 45419371, + "description": "RACEWAYS", + "label": "26 05 33 - RACEWAYS", + "number": "26 05 33", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804902971 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Raceways (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-08T13:33:21Z" + }, + { + "id": 60933868, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148430413, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135130553, + "additional_page_count": 0, + "attached_at": "2025-02-25T15:25:23Z", + "attachment_id": 5261438489, + "content_type": "application/pdf", + "document_markup_layer_id": 59844862, + "filename": "26 05 33.01 \u2013 Electrical Boxes - Floor Boxes - PD - Response #05.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-25T15:25:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYVC5VH46EWK1GECHSVTJW6?companyId=8089&projectId=2563870&sig=c13853a2ac6b59e83fa25a558163fe9aa2c60a699a88233ac179ea313eff0326", + "version_timestamp": "2025-02-25T15:25:23Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": "2025-02-18", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 148430412, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-18", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148430411, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-18", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149099856, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-18", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148430410, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134802175, + "additional_page_count": 0, + "attached_at": "2025-02-18T21:20:30Z", + "attachment_id": 5247907912, + "content_type": "application/pdf", + "document_markup_layer_id": 59569661, + "filename": "26 05 33.01 - 1.0 - Electrical Boxes.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-18T21:20:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMDEXW7HB8GWTWZM0MXM7WQC?companyId=8089&projectId=2563870&sig=5577852fd20ce5d3e157e4a418e4f019e60b05a79d26733d6239c5bf7db71cdd", + "version_timestamp": "2025-02-18T21:20:30Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-18", + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 148970404, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134728083, + "additional_page_count": 0, + "attached_at": "2025-02-17T20:41:39Z", + "attachment_id": 5244994495, + "content_type": "application/pdf", + "document_markup_layer_id": 59526803, + "filename": "#26 00 00-1-Floorboxes.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-17T20:41:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAT91B0MR16HSPCPAE75K4V?companyId=8089&projectId=2563870&sig=4f29cb04644f93a6c0a7c1c8b58b494f274de8dc6418949a0e735edcaf390046", + "version_timestamp": "2025-02-17T20:41:39Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -6, + "workflow_group_number": 0 + }, + { + "id": 148970403, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13084111, + "name": "Jackson West" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-11T15:36:10Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-27T16:26:39Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-03-04", + "formatted_number": "26 05 33.01-1", + "issue_date": "2025-02-11", + "last_distributed_submittal": { + "id": 26206780, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36701856, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5261438489, + "content_type": "application/pdf", + "filename": "26 05 33.01 \u2013 Electrical Boxes - Floor Boxes - PD - Response #05.pdf", + "source_prostore_file_id": 5261438489, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYVC5VH46EWK1GECHSVTJW6?companyId=8089&projectId=2563870&sig=c13853a2ac6b59e83fa25a558163fe9aa2c60a699a88233ac179ea313eff0326", + "viewable_document_id": 807417148 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148430413, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-02-27T16:26:39Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": "2025-02-17", + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37079167, + "current_revision_id": 45419348, + "description": "ELECTRICAL BOXES", + "label": "26 05 33.01 - ELECTRICAL BOXES", + "number": "26 05 33.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804902965 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Floor Boxes (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-27T16:26:40Z" + }, + { + "id": 60981780, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148591448, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135386923, + "additional_page_count": 0, + "attached_at": "2025-02-28T22:28:24Z", + "attachment_id": 5271959390, + "content_type": "application/pdf", + "document_markup_layer_id": 60081601, + "filename": "03 30 00-17.0 - Cast in place concrete_Civil Construction Mix Design_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-28T22:28:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN7ANERXRQMPKPT9XDYGJPGM?companyId=8089&projectId=2563870&sig=c5fe519d80ac3a491d8dbb74815f3a7359adad2580d095da8fa4b0f08eb5dd8c", + "version_timestamp": "2025-02-28T22:28:24Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-27", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-28", + "sent_date": "2025-02-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 148591446, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-13", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148591445, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134581641, + "additional_page_count": 0, + "attached_at": "2025-02-13T18:40:59Z", + "attachment_id": 5238938966, + "content_type": "application/pdf", + "document_markup_layer_id": 59375694, + "filename": "03 30 00 17.0 - Mix Design_Civil Construction (PD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-13T18:40:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JM09STDZJ9TQGAFVE2GEXEG5?companyId=8089&projectId=2563870&sig=9adba4daa6291620e285824918e5d5acd4662eb65667ea21fcfb74f10ee6b1f0", + "version_timestamp": "2025-02-13T18:40:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-19", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-02-13", + "sent_date": "2025-02-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 148591444, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148591442, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134513277, + "additional_page_count": 1, + "attached_at": "2025-02-12T19:19:11Z", + "attachment_id": 5236153149, + "content_type": "application/pdf", + "document_markup_layer_id": 59327661, + "filename": "03 30 00 17.0 - Mix Design_Civil Construction (PD).pdf", + "markup_updated_at": "2025-02-12T21:12:38Z", + "state": "excluded", + "updated_at": "2025-02-12T19:19:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKXSK92FBAD4AN3EAGWRP1N0?companyId=8089&projectId=2563870&sig=5f83f999bffc4a65b584d22d029eb840d5aff342164f79f65b4be322bc0c236b", + "version_timestamp": "2025-02-12T19:19:11Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-12", + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-12T19:14:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-03T14:34:27Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-27", + "formatted_number": "033000-17", + "issue_date": "2025-02-12", + "last_distributed_submittal": { + "id": 26237614, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36747992, + "comment": "", + "distributed_attachments": [ + { + "id": 5271959390, + "content_type": "application/pdf", + "filename": "03 30 00-17.0 - Cast in place concrete_Civil Construction Mix Design_PD_reviewed.pdf", + "source_prostore_file_id": 5271959390, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN7ANERXRQMPKPT9XDYGJPGM?companyId=8089&projectId=2563870&sig=c5fe519d80ac3a491d8dbb74815f3a7359adad2580d095da8fa4b0f08eb5dd8c", + "viewable_document_id": 809351468 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148591448, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish concrete based on approved mix design at applicable locations.
", + "sent_at": "2025-03-03T14:34:27Z" + }, + "lead_time": 2, + "linked_drawing_ids": [], + "location_id": null, + "number": "17", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-04-14", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mix Design: Civil Construction (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-03T14:34:27Z" + }, + { + "id": 60981834, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148591582, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135412666, + "additional_page_count": 0, + "attached_at": "2025-03-03T14:10:55Z", + "attachment_id": 5273478995, + "content_type": "application/pdf", + "document_markup_layer_id": 60081795, + "filename": "03 30 00-18.0 - Cast in place concrete_Structural Construction_Mix Design_PD_Structures Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-03T14:10:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNE5F8H5M9VW37F4GAR547B9?companyId=8089&projectId=2563870&sig=2e1d475fc40f7d9b7a0b39d514f72fab2622ffab84d24e535894dbce04d6eef2", + "version_timestamp": "2025-03-03T14:10:55Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-02-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 3, + "workflow_group_number": 2 + }, + { + "id": 148591581, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148591580, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134531656, + "additional_page_count": 0, + "attached_at": "2025-02-12T22:11:22Z", + "attachment_id": 5236840633, + "content_type": "application/pdf", + "document_markup_layer_id": 59332824, + "filename": "03 30 00 18.0 - Mix Design_Structural Construction (PD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-12T22:11:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKY3EKQ8BSBG14VEW4SFJXQQ?companyId=8089&projectId=2563870&sig=7c7c48f97ff51edb83c4966758826b5349f7d3330fb0dfa7e2250660ff38399d", + "version_timestamp": "2025-02-12T22:11:22Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-19", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-12", + "sent_date": "2025-02-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148591579, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148591578, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134513324, + "additional_page_count": 1, + "attached_at": "2025-02-12T19:19:47Z", + "attachment_id": 5236156448, + "content_type": "application/pdf", + "document_markup_layer_id": 59329745, + "filename": "03 30 00 18.0 - Mix Design_Structural Construction (PD).pdf", + "markup_updated_at": "2025-02-12T21:39:03Z", + "state": "excluded", + "updated_at": "2025-02-12T19:19:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JKXSMFDVDV58FNA4M71NT1SQ?companyId=8089&projectId=2563870&sig=17450a8587a0435724ae9f888fb5cc3b13a813b78f7df07a3966aaf48cab8960", + "version_timestamp": "2025-02-12T19:19:47Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-02-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-12", + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-12T19:14:58Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-03T14:36:34Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-02-26", + "formatted_number": "033000-18", + "issue_date": "2025-02-12", + "last_distributed_submittal": { + "id": 26237690, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36748101, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5273478995, + "content_type": "application/pdf", + "filename": "03 30 00-18.0 - Cast in place concrete_Structural Construction_Mix Design_PD_Structures Reviewed.pdf", + "source_prostore_file_id": 5273478995, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNE5F8H5M9VW37F4GAR547B9?companyId=8089&projectId=2563870&sig=2e1d475fc40f7d9b7a0b39d514f72fab2622ffab84d24e535894dbce04d6eef2", + "viewable_document_id": 809647253 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148591582, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish concrete based on approved mix design at applicable locations.
", + "sent_at": "2025-03-03T14:36:34Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "18", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mix Design: Structural Construction (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-03T14:36:34Z" + }, + { + "id": 61075568, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148907101, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135891896, + "additional_page_count": 0, + "attached_at": "2025-03-11T16:24:38Z", + "attachment_id": 5292160343, + "content_type": "application/pdf", + "document_markup_layer_id": 60484216, + "filename": "05 12 00-5.1 - Area AN Structural Steel Framing - SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-11T16:24:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP30ASYQT93Z8N8W1BHP37WY?companyId=8089&projectId=2563870&sig=e3757c57a85b3f78efa81a3de02797b9977f46e04ed0d11987ce6778f488063e", + "version_timestamp": "2025-03-11T16:24:38Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-11", + "sent_date": "2025-03-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 148907100, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150526820, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148907099, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135576101, + "additional_page_count": 1, + "attached_at": "2025-03-05T15:08:36Z", + "attachment_id": 5279671175, + "content_type": "application/pdf", + "document_markup_layer_id": 60218887, + "filename": "051200 5.1 - Area AN Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-03-06T19:12:23Z", + "state": "excluded", + "updated_at": "2025-03-06T19:12:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKDKA55DVWKPVB1NTQF1AK9?companyId=8089&projectId=2563870&sig=ed117fab678678cec65b496c620f0bc85a29cc3834a16e2f881139981c354447", + "version_timestamp": "2025-03-06T19:12:23Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-06", + "sent_date": "2025-03-05", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 148907098, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148907097, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135575050, + "additional_page_count": 1, + "attached_at": "2025-03-05T15:08:36Z", + "attachment_id": 5279671175, + "content_type": "application/pdf", + "document_markup_layer_id": 60218887, + "filename": "051200 5.1 - Area AN Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-03-06T19:12:23Z", + "state": "outdated", + "updated_at": "2025-03-05T15:08:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKDKA55DVWKPVB1NTQF1AK9?companyId=8089&projectId=2563870&sig=ed117fab678678cec65b496c620f0bc85a29cc3834a16e2f881139981c354447", + "version_timestamp": "2025-03-05T15:08:36Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-05", + "sent_date": "2025-03-04", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 2, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-17T14:01:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-11T16:59:45Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-20", + "formatted_number": "051200-5", + "issue_date": "2025-02-17", + "last_distributed_submittal": { + "id": 26360680, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36931630, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5292160343, + "content_type": "application/pdf", + "filename": "05 12 00-5.1 - Area AN Structural Steel Framing - SD_STR_fgma.pdf", + "source_prostore_file_id": 5292160343, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP30ASYQT93Z8N8W1BHP37WY?companyId=8089&projectId=2563870&sig=e3757c57a85b3f78efa81a3de02797b9977f46e04ed0d11987ce6778f488063e", + "viewable_document_id": 813115041 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 148907101, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please review and release for fabrication. Submit calculations based on engineer comments.
", + "sent_at": "2025-03-11T16:59:45Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-06-04", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area AN Structural Steel Framing (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-11T16:59:45Z" + }, + { + "id": 61084346, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148942877, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135131317, + "additional_page_count": 0, + "attached_at": "2025-02-25T15:33:03Z", + "attachment_id": 5261475277, + "content_type": "application/pdf", + "document_markup_layer_id": 59845781, + "filename": "23 21 00-1.0 - Pipe & Pipe Fittings - Response #06.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-25T15:33:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYVSFS949X66CMRENC6BGGX?companyId=8089&projectId=2563870&sig=d6425cab02ac86f3b2a55b52407592561ef1719b3cc5262efe7a88467ac2f87b", + "version_timestamp": "2025-02-25T15:33:03Z" + } + ], + "comment": "See attached pdf for H2MG's review.", + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": "2025-02-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 148942876, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148942875, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148942874, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148942873, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148942871, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134735589, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:33:27Z", + "attachment_id": 5244397827, + "content_type": "application/pdf", + "document_markup_layer_id": 59504101, + "filename": "23 21 00 1.0 - Refrigerant Pipe Jack (PD).pdf", + "markup_updated_at": "2025-02-17T22:23:36Z", + "state": "excluded", + "updated_at": "2025-02-17T22:23:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAFHEGMJAA9XER55YP9HNWV?companyId=8089&projectId=2563870&sig=1dc3d5629d43513ba9d7d5797f4dd2fe44eb58ea54556d75e5e878e2208e824c", + "version_timestamp": "2025-02-17T22:23:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148942872, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148942868, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134712343, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:33:27Z", + "attachment_id": 5244397827, + "content_type": "application/pdf", + "document_markup_layer_id": 59504101, + "filename": "23 21 00 1.0 - Refrigerant Pipe Jack (PD).pdf", + "markup_updated_at": "2025-02-17T22:23:36Z", + "state": "outdated", + "updated_at": "2025-02-17T17:33:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAFHEGMJAA9XER55YP9HNWV?companyId=8089&projectId=2563870&sig=1dc3d5629d43513ba9d7d5797f4dd2fe44eb58ea54556d75e5e878e2208e824c", + "version_timestamp": "2025-02-17T17:33:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 148942870, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 148942869, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 148942867, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-17T17:30:52Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-25T18:31:38Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + } + ], + "drawing_ids": [], + "due_date": "2025-03-03", + "formatted_number": "23 21 00-1", + "issue_date": "2025-02-17", + "last_distributed_submittal": { + "id": 26172554, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36650239, + "comment": "See attached pdf for H2MG's review.
", + "distributed_attachments": [ + { + "id": 5261475277, + "content_type": "application/pdf", + "filename": "23 21 00-1.0 - Pipe & Pipe Fittings - Response #06.pdf", + "source_prostore_file_id": 5261475277, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMYVSFS949X66CMRENC6BGGX?companyId=8089&projectId=2563870&sig=d6425cab02ac86f3b2a55b52407592561ef1719b3cc5262efe7a88467ac2f87b", + "viewable_document_id": 807422735 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148942877, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "", + "sent_at": "2025-02-25T18:31:38Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037812, + "current_revision_id": 45441221, + "description": "PIPE AND PIPE FITTINGS - GENERAL", + "label": "23 21 00 - PIPE AND PIPE FITTINGS - GENERAL", + "number": "23 21 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331484 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Refrigerant Pipe Jack (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-26T14:16:42Z" + }, + { + "id": 61084532, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148943316, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135290792, + "additional_page_count": 0, + "attached_at": "2025-02-27T17:25:22Z", + "attachment_id": 5268104800, + "content_type": "application/pdf", + "document_markup_layer_id": 59981817, + "filename": "23 21 00-2.0 - HVAC Piping Hangers and Supports_PD_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-27T17:25:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN471M52MNTC1762T283JYYJ?companyId=8089&projectId=2563870&sig=301c40a90543d49c5f7dd2222e52012074b2ed3a1bb1acc6fff81e08a33f38b3", + "version_timestamp": "2025-02-27T17:25:22Z" + }, + { + "id": 135177165, + "additional_page_count": 0, + "attached_at": "2025-02-25T22:40:04Z", + "attachment_id": 5263224410, + "content_type": "application/pdf", + "document_markup_layer_id": 59897806, + "filename": "23 21 00-2.0 - HVAC Piping Hangers and Supports_PD.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-25T22:40:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZM871HSCP72QTQ64ZSVZP7?companyId=8089&projectId=2563870&sig=06b8eea94eea40a7c7a9fe4e8c8d3493e8580f510fa95baad88f1d529a4047b5", + "version_timestamp": "2025-02-25T22:40:04Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": "2025-02-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 148943312, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-24", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148943313, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-24", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148943314, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-24", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148943315, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-24", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148943310, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135046524, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:35:28Z", + "attachment_id": 5244403856, + "content_type": "application/pdf", + "document_markup_layer_id": 59771481, + "filename": "23 21 00 2.0 - HVAC Piping Hangers and Supports.pdf", + "markup_updated_at": "2025-02-24T14:28:27Z", + "state": "excluded", + "updated_at": "2025-02-24T14:28:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAFMPM5NKFTVVNMEGB98TYE?companyId=8089&projectId=2563870&sig=158180faf9e9b71cf1dea10791cbaf4a9f9e3738be5bbd6d71ea4b5d89db8101", + "version_timestamp": "2025-02-24T14:28:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-24", + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 148943311, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148943307, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134712495, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:35:28Z", + "attachment_id": 5244403856, + "content_type": "application/pdf", + "document_markup_layer_id": 59771481, + "filename": "23 21 00 2.0 - HVAC Piping Hangers and Supports.pdf", + "markup_updated_at": "2025-02-24T14:28:27Z", + "state": "outdated", + "updated_at": "2025-02-17T17:35:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAFMPM5NKFTVVNMEGB98TYE?companyId=8089&projectId=2563870&sig=158180faf9e9b71cf1dea10791cbaf4a9f9e3738be5bbd6d71ea4b5d89db8101", + "version_timestamp": "2025-02-17T17:35:28Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 148943309, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 148943308, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 148943306, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-17T17:34:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-02-27T19:08:23Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + } + ], + "drawing_ids": [], + "due_date": "2025-03-13", + "formatted_number": "23 21 00-2", + "issue_date": "2025-02-17", + "last_distributed_submittal": { + "id": 26210984, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36707548, + "comment": null, + "distributed_attachments": [ + { + "id": 5268104800, + "content_type": "application/pdf", + "filename": "23 21 00-2.0 - HVAC Piping Hangers and Supports_PD_reviewed.pdf", + "source_prostore_file_id": 5268104800, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN471M52MNTC1762T283JYYJ?companyId=8089&projectId=2563870&sig=301c40a90543d49c5f7dd2222e52012074b2ed3a1bb1acc6fff81e08a33f38b3", + "viewable_document_id": 808628238 + }, + { + "id": 5263224410, + "content_type": "application/pdf", + "filename": "23 21 00-2.0 - HVAC Piping Hangers and Supports_PD.pdf", + "source_prostore_file_id": 5263224410, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZM871HSCP72QTQ64ZSVZP7?companyId=8089&projectId=2563870&sig=06b8eea94eea40a7c7a9fe4e8c8d3493e8580f510fa95baad88f1d529a4047b5", + "viewable_document_id": 807715547 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148943316, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "", + "sent_at": "2025-02-27T19:08:23Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037812, + "current_revision_id": 45441221, + "description": "PIPE AND PIPE FITTINGS - GENERAL", + "label": "23 21 00 - PIPE AND PIPE FITTINGS - GENERAL", + "number": "23 21 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331484 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "HVAC Piping Hangers and Supports (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-02-27T19:08:23Z" + }, + { + "id": 61085141, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148944950, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135452133, + "additional_page_count": 0, + "attached_at": "2025-03-03T19:52:15Z", + "attachment_id": 5274898998, + "content_type": "application/pdf", + "document_markup_layer_id": 60113461, + "filename": "33 40 00-2.0 - Storm Water Piping_Pond Materials_reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-03T19:52:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNES12F2NDB7SCV0GQWYJJ5T?companyId=8089&projectId=2563870&sig=185738b54ac1e7cbe44f843b694dfbad97b85a5a8b867ccc5450de4fd3adbc9a", + "version_timestamp": "2025-03-03T19:52:15Z" + } + ], + "comment": "See attached pdf for submittal review.", + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-02-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 148944949, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148944948, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134722864, + "additional_page_count": 0, + "attached_at": "2025-02-17T19:42:53Z", + "attachment_id": 5244802151, + "content_type": "application/pdf", + "document_markup_layer_id": 59494156, + "filename": "33 40 00 2.0 - Pond Materials (PD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-17T19:42:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAPY6S811MGA2DMSHDRBTN2?companyId=8089&projectId=2563870&sig=c4d96b0df372b086737b4102297cfef90b44c8fdb3bdb0b487bb588262d7c9be", + "version_timestamp": "2025-02-17T19:42:53Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": "2025-02-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 148944947, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148944946, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134714028, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:55:28Z", + "attachment_id": 5244459862, + "content_type": "application/pdf", + "document_markup_layer_id": 59491610, + "filename": "334000 - Pond Materials.pdf", + "markup_updated_at": "2025-02-17T19:42:23Z", + "state": "excluded", + "updated_at": "2025-02-17T17:55:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAGRPFTWGKQXBKFR4FQ4MHQ?companyId=8089&projectId=2563870&sig=7416f5724277d5287806fcecf97ab0eccb3566215475a58700f7f1a1b156de5a", + "version_timestamp": "2025-02-17T17:55:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-17T17:48:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-04T16:59:19Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-03", + "formatted_number": "33 40 00-2", + "issue_date": "2025-02-17", + "last_distributed_submittal": { + "id": 26263308, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36785579, + "comment": "See attached pdf for submittal review.
", + "distributed_attachments": [ + { + "id": 5274898998, + "content_type": "application/pdf", + "filename": "33 40 00-2.0 - Storm Water Piping_Pond Materials_reviewed.pdf", + "source_prostore_file_id": 5274898998, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNES12F2NDB7SCV0GQWYJJ5T?companyId=8089&projectId=2563870&sig=185738b54ac1e7cbe44f843b694dfbad97b85a5a8b867ccc5450de4fd3adbc9a", + "viewable_document_id": 809908891 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148944950, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as specified.
", + "sent_at": "2025-03-04T16:59:19Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pond Materials ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:30Z" + }, + { + "id": 61085164, + "actual_delivery_date": null, + "approvers": [ + { + "id": 148945062, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135274495, + "additional_page_count": 0, + "attached_at": "2025-02-27T14:47:58Z", + "attachment_id": 5267473931, + "content_type": "application/pdf", + "document_markup_layer_id": 60080983, + "filename": "33 05 00-2.0 - Backfill and Bedding_Flowable Fill_PD_Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-02-27T14:47:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN3Y1995HYJ1RG6KDNHBXBZ8?companyId=8089&projectId=2563870&sig=ab57f35f2f90a4327fbe21369fe0d0247657d037ff16c8479b5a9bed55d938e7", + "version_timestamp": "2025-02-27T14:47:58Z" + } + ], + "comment": "See attached pdf for submittal review.", + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-02-27", + "sent_date": "2025-02-18", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 148945061, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-18", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 148945060, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 134752030, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:53:05Z", + "attachment_id": 5244454917, + "content_type": "application/pdf", + "document_markup_layer_id": 59499450, + "filename": "330500 - Flowable Fill.pdf", + "markup_updated_at": "2025-02-18T13:24:57Z", + "state": "excluded", + "updated_at": "2025-02-18T13:24:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAGNE9KAC39F9X9K938MWBA?companyId=8089&projectId=2563870&sig=3d94fb19075971c181a47a2f6e0637259586fadaf8ed2db16643afb48c22e2f6", + "version_timestamp": "2025-02-18T13:24:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-18", + "sent_date": "2025-02-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 148945059, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-02-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 148945058, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 134713842, + "additional_page_count": 1, + "attached_at": "2025-02-17T17:53:05Z", + "attachment_id": 5244454917, + "content_type": "application/pdf", + "document_markup_layer_id": 59499450, + "filename": "330500 - Flowable Fill.pdf", + "markup_updated_at": "2025-02-18T13:24:57Z", + "state": "outdated", + "updated_at": "2025-02-17T17:53:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMAGNE9KAC39F9X9K938MWBA?companyId=8089&projectId=2563870&sig=3d94fb19075971c181a47a2f6e0637259586fadaf8ed2db16643afb48c22e2f6", + "version_timestamp": "2025-02-17T17:53:05Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-17", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-17T17:49:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-03T14:38:35Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-04", + "formatted_number": "33 05 00-2", + "issue_date": "2025-02-17", + "last_distributed_submittal": { + "id": 26237775, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36748222, + "comment": "See attached pdf for submittal review.
", + "distributed_attachments": [ + { + "id": 5267473931, + "content_type": "application/pdf", + "filename": "33 05 00-2.0 - Backfill and Bedding_Flowable Fill_PD_Reviewed.pdf", + "source_prostore_file_id": 5267473931, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JN3Y1995HYJ1RG6KDNHBXBZ8?companyId=8089&projectId=2563870&sig=ab57f35f2f90a4327fbe21369fe0d0247657d037ff16c8479b5a9bed55d938e7", + "viewable_document_id": 808523012 + } + ], + "response_name": "Approved", + "submittal_approver_id": 148945062, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as noted.
", + "sent_at": "2025-03-03T14:38:35Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788339, + "current_revision_id": 45045692, + "description": "Backfill and Bedding", + "label": "33 05 00 - Backfill and Bedding", + "number": "33 05 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Flowable Fill (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-07T19:03:31Z" + }, + { + "id": 61208794, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-20T21:05:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "033000-19", + "issue_date": "2025-02-20", + "last_distributed_submittal": null, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "19", + "private": false, + "received_date": null, + "received_from": { + "id": 6856793, + "name": "Shane Fox" + }, + "required_on_site_date": "2025-03-04", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-02-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "SOG Mock-up", + "type": { + "id": 8918, + "name": "Mock-up", + "translated_name": "Mock-up" + }, + "updated_at": "2025-05-27T14:30:56Z" + }, + { + "id": 61297132, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149602849, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136250356, + "additional_page_count": 0, + "attached_at": "2025-03-18T14:12:57Z", + "attachment_id": 5306593734, + "content_type": "application/pdf", + "document_markup_layer_id": 60783726, + "filename": "03 30 00-20.0 - Cast in place concrete_Pavilion Foundation Rebar_SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-18T14:12:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPMSJPKAS46XAPYF18XBM8VR?companyId=8089&projectId=2563870&sig=97a50aa083cd15197ae7e1adda9ccd74208b4f27dee47df04b4c6bfb01c251f6", + "version_timestamp": "2025-03-18T14:12:57Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-18", + "sent_date": "2025-03-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 149602848, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-13", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149602846, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136069582, + "additional_page_count": 1, + "attached_at": "2025-03-13T20:26:19Z", + "attachment_id": 5299132662, + "content_type": "application/pdf", + "document_markup_layer_id": 60629473, + "filename": "03 30 00 - 20.0 - Pavillion Foundation Rebar (SD).pdf", + "markup_updated_at": "2025-03-13T20:28:35Z", + "state": "excluded", + "updated_at": "2025-03-13T20:28:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8JZ4BXMQYR758DZP98XV20?companyId=8089&projectId=2563870&sig=ddc3479f9faf7e1cb641a6ef775a4ee7c23a32d2e72ee3c264847dcb68092907", + "version_timestamp": "2025-03-13T20:28:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": "2025-03-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149602847, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149602843, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136069380, + "additional_page_count": 1, + "attached_at": "2025-03-13T20:26:19Z", + "attachment_id": 5299132662, + "content_type": "application/pdf", + "document_markup_layer_id": 60629473, + "filename": "03 30 00 - 20.0 - Pavillion Foundation Rebar (SD).pdf", + "markup_updated_at": "2025-03-13T20:28:35Z", + "state": "outdated", + "updated_at": "2025-03-13T20:26:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8JZ4BXMQYR758DZP98XV20?companyId=8089&projectId=2563870&sig=ddc3479f9faf7e1cb641a6ef775a4ee7c23a32d2e72ee3c264847dcb68092907", + "version_timestamp": "2025-03-13T20:26:19Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": 2, + "workflow_group_number": 0 + }, + { + "id": 149602845, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149602844, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-25T13:40:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-18T17:45:25Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "033000-20", + "issue_date": "2025-02-25", + "last_distributed_submittal": { + "id": 26456708, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37072429, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5306593734, + "content_type": "application/pdf", + "filename": "03 30 00-20.0 - Cast in place concrete_Pavilion Foundation Rebar_SD_STR.pdf", + "source_prostore_file_id": 5306593734, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPMSJPKAS46XAPYF18XBM8VR?companyId=8089&projectId=2563870&sig=97a50aa083cd15197ae7e1adda9ccd74208b4f27dee47df04b4c6bfb01c251f6", + "viewable_document_id": 815688553 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149602849, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Lithko,
\nSee response and furnish as noted. Please provide a clean set with comments incorporated for RO records.
", + "sent_at": "2025-03-18T17:45:25Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "20", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-05-20", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pavilion Foundation Rebar (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-18T17:45:25Z" + }, + { + "id": 61297225, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149603208, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136115483, + "additional_page_count": 0, + "attached_at": "2025-03-14T16:50:58Z", + "attachment_id": 5301041772, + "content_type": "application/pdf", + "document_markup_layer_id": 60667057, + "filename": "03 30 00-21.0 - Cast in place concrete_Site Concrete_SD_Reviewed.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-14T16:50:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPAS0ZTWR61GZ4Y3MPSRCBAQ?companyId=8089&projectId=2563870&sig=d259322ddc8dbcf4a6cfc7ec8dd2287ec490648895cc60e6458a6314523e05b3", + "version_timestamp": "2025-03-14T16:50:58Z" + } + ], + "comment": "See attached pdf for submittal review.", + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-14", + "sent_date": "2025-03-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 149603207, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-13", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149603205, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136066521, + "additional_page_count": 1, + "attached_at": "2025-03-13T19:46:50Z", + "attachment_id": 5298978871, + "content_type": "application/pdf", + "document_markup_layer_id": 60627160, + "filename": "03 30 00 21.0 - Site Concrete (SD).pdf", + "markup_updated_at": "2025-03-13T19:59:11Z", + "state": "excluded", + "updated_at": "2025-03-13T19:59:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8GPFH5V02TMAJ8H4ANNMQP?companyId=8089&projectId=2563870&sig=04f37b56a00a7f2297a96eb4a55c6ca5f938a9bc984fd4f8d9c23e969d1ca32c", + "version_timestamp": "2025-03-13T19:59:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": "2025-03-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149603206, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149603204, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136065180, + "additional_page_count": 1, + "attached_at": "2025-03-13T19:46:50Z", + "attachment_id": 5298978871, + "content_type": "application/pdf", + "document_markup_layer_id": 60627160, + "filename": "03 30 00 21.0 - Site Concrete (SD).pdf", + "markup_updated_at": "2025-03-13T19:59:11Z", + "state": "outdated", + "updated_at": "2025-03-13T19:46:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP8GPFH5V02TMAJ8H4ANNMQP?companyId=8089&projectId=2563870&sig=04f37b56a00a7f2297a96eb4a55c6ca5f938a9bc984fd4f8d9c23e969d1ca32c", + "version_timestamp": "2025-03-13T19:46:50Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": 2, + "workflow_group_number": 0 + }, + { + "id": 149603203, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149603202, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-25T13:43:22Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-14T16:56:34Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-27", + "formatted_number": "033000-21", + "issue_date": "2025-02-25", + "last_distributed_submittal": { + "id": 26415824, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37012738, + "comment": "See attached pdf for submittal review.
", + "distributed_attachments": [ + { + "id": 5301041772, + "content_type": "application/pdf", + "filename": "03 30 00-21.0 - Cast in place concrete_Site Concrete_SD_Reviewed.pdf", + "source_prostore_file_id": 5301041772, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPAS0ZTWR61GZ4Y3MPSRCBAQ?companyId=8089&projectId=2563870&sig=d259322ddc8dbcf4a6cfc7ec8dd2287ec490648895cc60e6458a6314523e05b3", + "viewable_document_id": 814686738 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149603208, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11335201, + "initials": "PM", + "name": "Paco Moreno", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See submittal response and install as noted.
", + "sent_at": "2025-03-14T16:56:34Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "21", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-12-14", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-12-01", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Site Concrete (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-14T16:56:34Z" + }, + { + "id": 61310496, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149813466, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135953654, + "additional_page_count": 0, + "attached_at": "2025-03-12T14:08:20Z", + "attachment_id": 5294598688, + "content_type": "application/pdf", + "document_markup_layer_id": 60533369, + "filename": "23 64 23-1.1 - Scroll Water Chillers R1_PD_HMG_ACR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-12T14:08:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5AXZJYVRW72NXSZY5V4MVE?companyId=8089&projectId=2563870&sig=2e455850fd506237718db98ffccd7bd2025ee04015e29a4329ff2eecffef0f51", + "version_timestamp": "2025-03-12T14:08:20Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-03-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 149648635, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135471083, + "additional_page_count": 0, + "attached_at": "2025-03-03T22:26:44Z", + "attachment_id": 5275513593, + "content_type": "application/pdf", + "document_markup_layer_id": 60127398, + "filename": "236423-01-01 - ACR Sbtl Review - Scroll Water Chillers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-03T22:26:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNF1W14BEYKHNHB6XBDQTJ4M?companyId=8089&projectId=2563870&sig=4bb89cec1adaf936217e9e9adc316177c7bdb00af18ffb0c0f5e375f9c93336e", + "version_timestamp": "2025-03-03T22:26:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": "2025-02-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 149648636, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149648637, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149648638, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149648633, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135151358, + "additional_page_count": 0, + "attached_at": "2025-02-25T18:29:07Z", + "attachment_id": 5262193075, + "content_type": "application/pdf", + "document_markup_layer_id": 59877953, + "filename": "23 64 23 - 1.1 - Scroll Water Chillers (Comment Responses).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-25T18:29:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZ5WZXYKP40QE8XDNENRRDT?companyId=8089&projectId=2563870&sig=5685b09588251ca3c174182100e25381678e966cef7994b441984f34cc6ee62a", + "version_timestamp": "2025-02-25T18:29:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": "2025-02-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149648634, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149648630, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135151266, + "additional_page_count": 0, + "attached_at": "2025-02-25T18:27:58Z", + "attachment_id": 5262189439, + "content_type": "application/pdf", + "document_markup_layer_id": 59862067, + "filename": "23 64 23 - 1.0 - Scroll Water Chillers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-02-25T18:27:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JMZ5TTVRYM1BSWNHJAC4DJVJ?companyId=8089&projectId=2563870&sig=14a3c29a0a6a2bc8810adc2da714b40c6ffe78158e17f4c58db0f495fbba31f5", + "version_timestamp": "2025-02-25T18:27:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-02-25", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 149648632, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149648631, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149648629, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-25T18:26:31Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-12T14:38:46Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + } + ], + "drawing_ids": [], + "due_date": "2025-03-10", + "formatted_number": "23 64 23-1", + "issue_date": "2025-02-25", + "last_distributed_submittal": { + "id": 26376644, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36955471, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5294598688, + "content_type": "application/pdf", + "filename": "23 64 23-1.1 - Scroll Water Chillers R1_PD_HMG_ACR.pdf", + "source_prostore_file_id": 5294598688, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP5AXZJYVRW72NXSZY5V4MVE?companyId=8089&projectId=2563870&sig=2e455850fd506237718db98ffccd7bd2025ee04015e29a4329ff2eecffef0f51", + "viewable_document_id": 813546474 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149813466, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "Please proceed as noted by engineer. Provide submittal for record addressing engineer comments.
", + "sent_at": "2025-03-12T14:38:46Z" + }, + "lead_time": 245, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-17", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Scroll Water Chillers R1 (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-12T14:40:10Z" + }, + { + "id": 61331552, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149714637, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149714636, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152319806, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149714635, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136791171, + "additional_page_count": 1, + "attached_at": "2025-03-27T15:34:31Z", + "attachment_id": 5327886267, + "content_type": "application/pdf", + "document_markup_layer_id": 61241899, + "filename": "334000 - ROW Storm Junction Box.pdf", + "markup_updated_at": "2025-03-27T15:53:38Z", + "state": "current", + "updated_at": "2025-03-27T15:53:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC3TZ9K7YY4DW5RP3B93J97?companyId=8089&projectId=2563870&sig=56393781b3d16653645162423465ad1bcb0e38adecde97a106ff546b281b9275", + "version_timestamp": "2025-03-27T15:53:38Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-02-28", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149714634, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-02-28", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149714633, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136789296, + "additional_page_count": 1, + "attached_at": "2025-03-27T15:34:31Z", + "attachment_id": 5327886267, + "content_type": "application/pdf", + "document_markup_layer_id": 61241899, + "filename": "334000 - ROW Storm Junction Box.pdf", + "markup_updated_at": "2025-03-27T15:53:38Z", + "state": "outdated", + "updated_at": "2025-03-27T15:34:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC3TZ9K7YY4DW5RP3B93J97?companyId=8089&projectId=2563870&sig=56393781b3d16653645162423465ad1bcb0e38adecde97a106ff546b281b9275", + "version_timestamp": "2025-03-27T15:34:31Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-03-03", + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 8, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-26T13:18:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-15T14:44:00Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-10", + "formatted_number": "33 40 00-3", + "issue_date": "2025-02-26", + "last_distributed_submittal": { + "id": 26834083, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37631362, + "comment": "", + "distributed_attachments": [ + { + "id": 5366335883, + "content_type": "application/pdf", + "filename": "334000 - ROW Storm Junction Box.pdf", + "source_prostore_file_id": 5327886267, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/d558ac61-fd76-40a0-bf98-341ed0ae2786_production_markup.pdf?companyId=8089&projectId=2563870&sig=e3f9700c0b5c1ee43f81c3a8a374831b8b782aac6a42a3d6f61f16e004157774", + "viewable_document_id": null + } + ], + "response_name": "Conforms as Noted", + "submittal_approver_id": 149714635, + "submittal_response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "submittal_response_id": 23348886, + "user": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "user_id": 9775551 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Closing to create revision with updated MH structure and drawings for MH STA 2+56.56
", + "sent_at": "2025-04-15T14:44:00Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4098, + "name": "Void ", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-16", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "ROW SD Manhole (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-04-15T14:44:14Z" + }, + { + "id": 61332041, + "actual_delivery_date": null, + "approvers": [ + { + "id": 149716737, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135838771, + "additional_page_count": 0, + "attached_at": "2025-03-10T20:04:00Z", + "attachment_id": 5290030276, + "content_type": "application/pdf", + "document_markup_layer_id": 60440630, + "filename": "05 12 00-2.1 - Area A South Structural Steel Framing - SD_STR_corrected.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-10T20:04:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP0TF69707TJXRGNPF2Q09Y1?companyId=8089&projectId=2563870&sig=fa26ae91417c85596c1a3a2d37bf106aeffa8b87bc6330a41824e2e2845f1622", + "version_timestamp": "2025-03-10T20:04:00Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-10", + "sent_date": "2025-03-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 150217470, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716736, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149716734, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135686295, + "additional_page_count": 0, + "attached_at": "2025-03-06T21:23:10Z", + "attachment_id": 5284046993, + "content_type": "application/pdf", + "document_markup_layer_id": 60313810, + "filename": "05 12 00 - 1.1 - Area A South Structural Steel Framing (SD).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-06T21:23:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNPNE637K30M39FK7CCSJNKQ?companyId=8089&projectId=2563870&sig=e4c44c51af2dde6f4e25cd6921ce5ca75971c13467872f4b5482bf7d0a55ca8e", + "version_timestamp": "2025-03-06T21:23:10Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-26", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-06", + "sent_date": "2025-03-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -14, + "workflow_group_number": 1 + }, + { + "id": 149716735, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149716733, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135684442, + "additional_page_count": 1, + "attached_at": "2025-03-06T21:05:52Z", + "attachment_id": 5283980201, + "content_type": "application/pdf", + "document_markup_layer_id": 60312272, + "filename": "05 12 00 - 1.1 - Area A South Structural Steel Framing (SD).pdf", + "markup_updated_at": "2025-03-06T21:08:56Z", + "state": "excluded", + "updated_at": "2025-03-06T21:05:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNPME5DMNQHAJYDKPD4VEQV8?companyId=8089&projectId=2563870&sig=d49dba29be4c370df3e55eadfddc48d925117baacde252ebb81b7b0370756935", + "version_timestamp": "2025-03-06T21:05:52Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-03-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-06", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -8, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-26T13:40:03Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-10T21:01:37Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-20", + "formatted_number": "051200-2", + "issue_date": "2025-02-26", + "last_distributed_submittal": { + "id": 26347341, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36910625, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5290030276, + "content_type": "application/pdf", + "filename": "05 12 00-2.1 - Area A South Structural Steel Framing - SD_STR_corrected.pdf", + "source_prostore_file_id": 5290030276, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP0TF69707TJXRGNPF2Q09Y1?companyId=8089&projectId=2563870&sig=fa26ae91417c85596c1a3a2d37bf106aeffa8b87bc6330a41824e2e2845f1622", + "viewable_document_id": 812738763 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 149716737, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-10T21:01:37Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": 31261485, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-05-13", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A South Structural Steel Framing (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-10T21:01:37Z" + }, + { + "id": 61388951, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153583363, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139170814, + "additional_page_count": 0, + "attached_at": "2025-05-13T00:21:59Z", + "attachment_id": 5422391546, + "content_type": "application/pdf", + "document_markup_layer_id": 63172310, + "filename": "33 05 50-2.1 - Wasterwater Manholes and J-boxes-SD_CIV.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-13T00:21:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3G9BNH2CWWHEMZ80NEBJQX?companyId=8089&projectId=2563870&sig=15a15810d876d14981f0cc351e92344e387821707c9a410c4e492ee6a298b2eb", + "version_timestamp": "2025-05-13T00:21:59Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-04-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 11, + "workflow_group_number": 2 + }, + { + "id": 149911619, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149911618, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-11", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149911617, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137584707, + "additional_page_count": 1, + "attached_at": "2025-04-11T12:48:59Z", + "attachment_id": 5359789945, + "content_type": "application/pdf", + "document_markup_layer_id": 61899723, + "filename": "330530 - Wastewater Manholes - Resubmittal.pdf", + "markup_updated_at": "2025-04-11T13:00:41Z", + "state": "excluded", + "updated_at": "2025-04-11T13:00:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRJEA3D1HBHR3690PV6FYCF0?companyId=8089&projectId=2563870&sig=d5585f450512d071a098173c3e4abdb33b0029ada6126c0b54c25070c62bb7cf", + "version_timestamp": "2025-04-11T13:00:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149911616, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149911613, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137583973, + "additional_page_count": 1, + "attached_at": "2025-04-11T12:48:59Z", + "attachment_id": 5359789945, + "content_type": "application/pdf", + "document_markup_layer_id": 61899723, + "filename": "330530 - Wastewater Manholes - Resubmittal.pdf", + "markup_updated_at": "2025-04-11T13:00:41Z", + "state": "outdated", + "updated_at": "2025-04-11T12:48:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRJEA3D1HBHR3690PV6FYCF0?companyId=8089&projectId=2563870&sig=d5585f450512d071a098173c3e4abdb33b0029ada6126c0b54c25070c62bb7cf", + "version_timestamp": "2025-04-11T12:48:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-11", + "sent_date": "2025-03-19", + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 6, + "workflow_group_number": 0 + }, + { + "id": 149911615, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 4191720, + "name": "Zach Forth" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149911614, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 4697511, + "name": "Lily Zapata" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-27T20:12:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-15T20:45:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-04-25", + "formatted_number": "33 05 50-2", + "issue_date": "2025-02-27", + "last_distributed_submittal": { + "id": 27253179, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38247804, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5422391546, + "content_type": "application/pdf", + "filename": "33 05 50-2.1 - Wasterwater Manholes and J-boxes-SD_CIV.pdf", + "source_prostore_file_id": 5422391546, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV3G9BNH2CWWHEMZ80NEBJQX?companyId=8089&projectId=2563870&sig=15a15810d876d14981f0cc351e92344e387821707c9a410c4e492ee6a298b2eb", + "viewable_document_id": 835584826 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153583363, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Per correspondence please furnish 48\" manhole with adjusted drop.
", + "sent_at": "2025-05-15T20:45:33Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-27", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wasterwater Manholes and J-boxes (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-15T20:45:50Z" + }, + { + "id": 61412712, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-28T16:31:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "066400-4", + "issue_date": "2025-02-28", + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-01-19", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037670, + "current_revision_id": 45441077, + "description": "PLASTIC PANELING", + "label": "066400 - PLASTIC PANELING", + "number": "066400", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331114 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic Paneling Samples", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-05T12:30:10Z" + }, + { + "id": 61412757, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-28T16:32:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "064219-3", + "issue_date": "2025-02-28", + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-10", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36038290, + "current_revision_id": 45441076, + "description": "PLASTIC-LAMINATE FACED WOOD PANELING", + "label": "064219 - PLASTIC-LAMINATE FACED WOOD PANELING", + "number": "064219", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331107 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2758690, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "006.A", + "specification_section_id": null, + "submittal_ids": [ + 61412757, + 61412712, + 59635293, + 59480824, + 59501392, + 59481350, + 59501158, + 59480748, + 59480633, + 59501511, + 59481210 + ], + "title": "Division 06 Action Submittals", + "updated_at": "2025-08-16T16:29:45Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Plastic-laminated-faced Wood Paneling (Sample)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-03-05T12:30:10Z" + }, + { + "id": 61414813, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150307236, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135578602, + "additional_page_count": 0, + "attached_at": "2025-03-05T15:42:42Z", + "attachment_id": 5279812032, + "content_type": "application/pdf", + "document_markup_layer_id": 60224410, + "filename": "03 30 00-24.0 - Sheet Vapor Barrier_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-05T15:42:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKFH2HEMX7GK00NAT00VNNN?companyId=8089&projectId=2563870&sig=546ccbe976600fb006a89b7cf739def00da00625078eea88819ceb4542f0d30d", + "version_timestamp": "2025-03-05T15:42:42Z" + } + ], + "comment": "Architects note: See attached response.", + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-05", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 149993784, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149993785, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 149993783, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135541502, + "additional_page_count": 1, + "attached_at": "2025-03-04T13:12:55Z", + "attachment_id": 5276313692, + "content_type": "application/pdf", + "document_markup_layer_id": 60180088, + "filename": "03 30 00 24.0 - Sheet Vapor Barrier.pdf", + "markup_updated_at": "2025-03-04T21:32:05Z", + "state": "excluded", + "updated_at": "2025-03-04T21:32:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNGMK3RJ56E1N9A4AY9KCC1T?companyId=8089&projectId=2563870&sig=736dfea037ec919494571fb255251eb4ff3ee05026ff0b3233702eaacf04fb51", + "version_timestamp": "2025-03-04T21:32:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": "2025-03-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 149993782, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 149993779, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135489035, + "additional_page_count": 1, + "attached_at": "2025-03-04T13:12:55Z", + "attachment_id": 5276313692, + "content_type": "application/pdf", + "document_markup_layer_id": 60180088, + "filename": "03 30 00 24.0 - Sheet Vapor Barrier.pdf", + "markup_updated_at": "2025-03-04T21:32:05Z", + "state": "outdated", + "updated_at": "2025-03-04T13:12:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNGMK3RJ56E1N9A4AY9KCC1T?companyId=8089&projectId=2563870&sig=736dfea037ec919494571fb255251eb4ff3ee05026ff0b3233702eaacf04fb51", + "version_timestamp": "2025-03-04T13:12:55Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-07", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-04", + "sent_date": "2025-03-03", + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": -3, + "workflow_group_number": 0 + }, + { + "id": 149993780, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6856793, + "name": "Shane Fox" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 149993781, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-02-28T17:06:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-05T21:27:09Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-18", + "formatted_number": "033000-24", + "issue_date": "2025-02-28", + "last_distributed_submittal": { + "id": 26290471, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36825114, + "comment": "Architects note: See attached response.
", + "distributed_attachments": [ + { + "id": 5279812032, + "content_type": "application/pdf", + "filename": "03 30 00-24.0 - Sheet Vapor Barrier_FGMA.pdf", + "source_prostore_file_id": 5279812032, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNKFH2HEMX7GK00NAT00VNNN?companyId=8089&projectId=2563870&sig=546ccbe976600fb006a89b7cf739def00da00625078eea88819ceb4542f0d30d", + "viewable_document_id": 810827019 + } + ], + "response_name": "Approved", + "submittal_approver_id": 150307236, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 6856793, + "initials": "SF", + "name": "Shane Fox", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12258387, + "initials": "MZ", + "name": "Mathew Zettlemoyer", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12467647, + "initials": "TB", + "name": "Tanner Bernal", + "vendor_name": "Lithko TX, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Please furnish as specified.
", + "sent_at": "2025-03-05T21:27:09Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "24", + "private": false, + "received_date": null, + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-03-17", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-19", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheet Vapor Barrier (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-05T21:27:09Z" + }, + { + "id": 61443843, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150083031, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136029706, + "additional_page_count": 0, + "attached_at": "2025-03-13T14:23:42Z", + "attachment_id": 5297676403, + "content_type": "application/pdf", + "document_markup_layer_id": 60608814, + "filename": "33 40 00-01.1 - Storm Water Piping-PD_Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-13T14:23:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP7Y6XGGJYTT8R3355T4Y37A?companyId=8089&projectId=2563870&sig=823b36b4a27b6d933a08e22d23d12ad36148830c32bcf7fec59ee6f695e33536", + "version_timestamp": "2025-03-13T14:23:42Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-24", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-13", + "sent_date": "2025-03-10", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 150710612, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150083030, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-10", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150083029, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135790010, + "additional_page_count": 1, + "attached_at": "2025-03-07T21:47:07Z", + "attachment_id": 5286793046, + "content_type": "application/pdf", + "document_markup_layer_id": 60368432, + "filename": "33 40 00-1.1 - Storm Pipe Appurtenances - Resubmittal.pdf", + "markup_updated_at": "2025-03-10T13:12:15Z", + "state": "excluded", + "updated_at": "2025-03-10T13:12:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNS96FK91VG9HYS58TPMEV3R?companyId=8089&projectId=2563870&sig=aec01412e9ddbba5d9684e346135a66e2e359f26f0efc4a477ae69871951a161", + "version_timestamp": "2025-03-10T13:12:15Z" + } + ], + "comment": "Please see resubmittal for materials requested.", + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-10", + "sent_date": "2025-03-07", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 150083028, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150083027, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135758937, + "additional_page_count": 1, + "attached_at": "2025-03-07T21:47:07Z", + "attachment_id": 5286793046, + "content_type": "application/pdf", + "document_markup_layer_id": 60368432, + "filename": "33 40 00-1.1 - Storm Pipe Appurtenances - Resubmittal.pdf", + "markup_updated_at": "2025-03-10T13:12:15Z", + "state": "outdated", + "updated_at": "2025-03-07T21:47:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNS96FK91VG9HYS58TPMEV3R?companyId=8089&projectId=2563870&sig=aec01412e9ddbba5d9684e346135a66e2e359f26f0efc4a477ae69871951a161", + "version_timestamp": "2025-03-07T21:47:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -1, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-03T14:43:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-13T16:27:28Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 13211938, + "name": "Jason George" + } + ], + "drawing_ids": [], + "due_date": "2025-03-24", + "formatted_number": "33 40 00-1", + "issue_date": "2025-03-03", + "last_distributed_submittal": { + "id": 26398676, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36988225, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5297676403, + "content_type": "application/pdf", + "filename": "33 40 00-01.1 - Storm Water Piping-PD_Response.pdf", + "source_prostore_file_id": 5297676403, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP7Y6XGGJYTT8R3355T4Y37A?companyId=8089&projectId=2563870&sig=823b36b4a27b6d933a08e22d23d12ad36148830c32bcf7fec59ee6f695e33536", + "viewable_document_id": 814105339 + } + ], + "response_name": "Approved", + "submittal_approver_id": 150083031, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "WPM,
\nSee attached and furnish as specified.
", + "sent_at": "2025-03-13T16:27:28Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Storm Water Piping (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-13T16:27:28Z" + }, + { + "id": 61456809, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150130457, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135442609, + "additional_page_count": 0, + "attached_at": "2025-03-03T18:43:32Z", + "attachment_id": 5274608350, + "content_type": "application/pdf", + "document_markup_layer_id": 60362923, + "filename": "03 30 00 7.1 - Building C Foundation and Slab on Grade_For Record.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-03T18:43:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNEN3C14Y0JJT2SHWDR3W8FP?companyId=8089&projectId=2563870&sig=e1d2fc93476a9f014791795a55a9d4ab75c577124c504b4c5ac99840937eb6b7", + "version_timestamp": "2025-03-03T18:43:32Z" + } + ], + "comment": "", + "days_to_respond": 7, + "due_date": "2025-03-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-03", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -7, + "workflow_group_number": 0 + }, + { + "id": 150130456, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 7, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-03T18:40:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": true + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-12", + "formatted_number": "033000-7", + "issue_date": "2025-03-03", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": 31261486, + "number": "7", + "private": false, + "received_date": "2025-02-03", + "received_from": { + "id": 12258387, + "name": "Mathew Zettlemoyer" + }, + "required_on_site_date": "2025-03-17", + "responsible_contractor": { + "id": 30314679, + "name": "Lithko Contracting, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 2, + "name": "Closed", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Building C Foundation Rebar Shop Drawings (For Record)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-03T18:59:31Z" + }, + { + "id": 61478867, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-04T14:27:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "057510-1", + "issue_date": "2025-03-04", + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096746, + "current_revision_id": 45441071, + "description": "PERFORATED METAL PANELS", + "label": "057510 - PERFORATED METAL PANELS", + "number": "057510", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331084 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-07-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Perforated Metal Panels (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-16T15:31:20Z" + }, + { + "id": 61478907, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-04T14:28:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "7", + "issue_date": "2025-03-04", + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-01", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": null, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Perforated Metal Panels (Sample)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-05-16T15:31:20Z" + }, + { + "id": 61515305, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150353240, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137195307, + "additional_page_count": 0, + "attached_at": "2025-04-03T22:42:43Z", + "attachment_id": 5344098520, + "content_type": "application/pdf", + "document_markup_layer_id": 61581430, + "filename": "33 05 30-1.1 - Manholes and Junction boxes-SD_CVL.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-03T22:42:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQYX2T76SBFSXDAXSHV1KBJ9?companyId=8089&projectId=2563870&sig=b4184f28777f87e80db7713cee870b925c3b752580ed5050399cd964618df563", + "version_timestamp": "2025-04-03T22:42:43Z" + } + ], + "comment": "See attached response from Civil Engineer.", + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-03", + "sent_date": "2025-03-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 150353239, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150353238, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150353237, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136811883, + "additional_page_count": 1, + "attached_at": "2025-03-27T18:49:52Z", + "attachment_id": 5328616295, + "content_type": "application/pdf", + "document_markup_layer_id": 61259113, + "filename": "334000 - Storm Precast Structures Resubmittal.pdf", + "markup_updated_at": "2025-03-27T19:14:44Z", + "state": "excluded", + "updated_at": "2025-03-27T19:14:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQCF0QP6RNKEAXRESAH0A3MB?companyId=8089&projectId=2563870&sig=dd629f344cf9fe02137e744e173e3d4e212c2b1463034c75bea8828b82650c65", + "version_timestamp": "2025-03-27T19:14:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150353236, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150353235, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136809548, + "additional_page_count": 1, + "attached_at": "2025-03-27T18:49:52Z", + "attachment_id": 5328616295, + "content_type": "application/pdf", + "document_markup_layer_id": 61259113, + "filename": "334000 - Storm Precast Structures Resubmittal.pdf", + "markup_updated_at": "2025-03-27T19:14:44Z", + "state": "outdated", + "updated_at": "2025-03-27T18:49:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQCF0QP6RNKEAXRESAH0A3MB?companyId=8089&projectId=2563870&sig=dd629f344cf9fe02137e744e173e3d4e212c2b1463034c75bea8828b82650c65", + "version_timestamp": "2025-03-27T18:49:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-03-27", + "sent_date": "2025-03-05", + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 1, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-05T14:55:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-15T14:41:27Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-10", + "formatted_number": "33 05 30-1", + "issue_date": "2025-03-05", + "last_distributed_submittal": { + "id": 26833991, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37631232, + "comment": "See attached response from Civil Engineer.
", + "distributed_attachments": [ + { + "id": 5344098520, + "content_type": "application/pdf", + "filename": "33 05 30-1.1 - Manholes and Junction boxes-SD_CVL.pdf", + "source_prostore_file_id": 5344098520, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQYX2T76SBFSXDAXSHV1KBJ9?companyId=8089&projectId=2563870&sig=b4184f28777f87e80db7713cee870b925c3b752580ed5050399cd964618df563", + "viewable_document_id": 822237893 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150353240, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See submittal for record. Provide round manholes in ROW.
", + "sent_at": "2025-04-15T14:41:27Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36787874, + "current_revision_id": 45045032, + "description": "Manholes and Junction Boxes", + "label": "33 05 30 - Manholes and Junction Boxes", + "number": "33 05 30", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manholes and Junction boxes (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-04-15T14:41:27Z" + }, + { + "id": 61534763, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151453167, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136358430, + "additional_page_count": 0, + "attached_at": "2025-03-19T19:04:30Z", + "attachment_id": 5310779657, + "content_type": "application/pdf", + "document_markup_layer_id": 60878919, + "filename": "23 73 00-1.1 - Indoor Central Station Handling Unit PD - HMG_ACR Response.R1.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-19T19:04:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQWMTNEN5WHDNDQZ3HWZX2C?companyId=8089&projectId=2563870&sig=b89ca2c3ad9fbeb3ef7cf65448e0c1b8fd9cd323c283cb7497a2f324e08263a1", + "version_timestamp": "2025-03-19T19:04:30Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 151453166, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150425406, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136196514, + "additional_page_count": 0, + "attached_at": "2025-03-17T17:45:31Z", + "attachment_id": 5304483263, + "content_type": "application/pdf", + "document_markup_layer_id": 60736461, + "filename": "237300-01-1 - ACR Sbtl Review - Air Handling Units-Rev1 - 3.17 Edit.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-17T17:45:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPJKB2E6DD7616GV9JFARMGZ?companyId=8089&projectId=2563870&sig=a2891bd398bdcda4ed38f41f9b5da9c1d581ed8a2f5ea01ce065f1ee96e21510", + "version_timestamp": "2025-03-17T17:45:31Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-05", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 150425410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": "2025-03-17", + "sent_date": "2025-03-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -11, + "workflow_group_number": 2 + }, + { + "id": 150425409, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150425408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150425407, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150425404, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135613136, + "additional_page_count": 1, + "attached_at": "2025-03-05T21:04:49Z", + "attachment_id": 5281065613, + "content_type": "application/pdf", + "document_markup_layer_id": 60251131, + "filename": "23 73 00 - 1.0 - Indoor Air Handlers Rev 1.pdf", + "markup_updated_at": "2025-03-05T21:10:11Z", + "state": "excluded", + "updated_at": "2025-03-05T21:10:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNM1ZFJ6KHT3EDC4T6R0016V?companyId=8089&projectId=2563870&sig=c51c1575bbbc74bc79a0629ba38ca9c0a2b20c3db3ae418c2cdb03dc99a18560", + "version_timestamp": "2025-03-05T21:10:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-05", + "sent_date": "2025-03-05", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150425405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150425402, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135612587, + "additional_page_count": 1, + "attached_at": "2025-03-05T21:04:49Z", + "attachment_id": 5281065613, + "content_type": "application/pdf", + "document_markup_layer_id": 60251131, + "filename": "23 73 00 - 1.0 - Indoor Air Handlers Rev 1.pdf", + "markup_updated_at": "2025-03-05T21:10:11Z", + "state": "outdated", + "updated_at": "2025-03-05T21:04:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNM1ZFJ6KHT3EDC4T6R0016V?companyId=8089&projectId=2563870&sig=c51c1575bbbc74bc79a0629ba38ca9c0a2b20c3db3ae418c2cdb03dc99a18560", + "version_timestamp": "2025-03-05T21:04:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-05", + "sent_date": "2025-03-05", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 150425401, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150425403, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-05", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-05T21:03:15Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-19T21:43:25Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 73 00-1", + "issue_date": "2025-03-05", + "last_distributed_submittal": { + "id": 26482251, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37108841, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5310779657, + "content_type": "application/pdf", + "filename": "23 73 00-1.1 - Indoor Central Station Handling Unit PD - HMG_ACR Response.R1.pdf", + "source_prostore_file_id": 5310779657, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQWMTNEN5WHDNDQZ3HWZX2C?companyId=8089&projectId=2563870&sig=b89ca2c3ad9fbeb3ef7cf65448e0c1b8fd9cd323c283cb7497a2f324e08263a1", + "viewable_document_id": 816410065 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 151453167, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Please proceed as noted by engineer and resubmit for record addressing engineer comments.
", + "sent_at": "2025-03-19T21:43:25Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": "2025-02-05", + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037822, + "current_revision_id": 45441253, + "description": "INDOOR CENTRAL STATION AIR HANDLING UNIT", + "label": "23 73 00 - INDOOR CENTRAL STATION AIR HANDLING UNIT", + "number": "23 73 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331519 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Indoor Central Station Air Handling Unit (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-27T16:34:42Z" + }, + { + "id": 61589181, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150606138, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135951688, + "additional_page_count": 0, + "attached_at": "2025-03-12T13:48:58Z", + "attachment_id": 5294527639, + "content_type": "application/pdf", + "document_markup_layer_id": 60534970, + "filename": "22 13 16-1.1 - Underground Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances - PD_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-12T13:48:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP59TJQ9BR36TFFQAHGP1DCF?companyId=8089&projectId=2563870&sig=5331f89d157c019e779540796a70e2070a771a5c09944c1e3352cf1f0026c5d1", + "version_timestamp": "2025-03-12T13:48:58Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-03-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 150606139, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150606137, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150606136, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150606134, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 135733723, + "additional_page_count": 1, + "attached_at": "2025-03-07T17:29:46Z", + "attachment_id": 5285875729, + "content_type": "application/pdf", + "document_markup_layer_id": 60350218, + "filename": "22 13 16 - 1.1 - Underground Soil Waste and Sanitary PVC Drain Piping Vent Piping and Appurtenances.pdf", + "markup_updated_at": "2025-03-07T17:32:12Z", + "state": "excluded", + "updated_at": "2025-03-07T17:32:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRTE1CFT5BCG67X821VCVZ1?companyId=8089&projectId=2563870&sig=4d6a5c9a0c302b93d466dc8e3a20bbcd0a4faf43588abba624d9045f53d69d37", + "version_timestamp": "2025-03-07T17:32:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": "2025-03-07", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150606135, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150606133, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 135733575, + "additional_page_count": 1, + "attached_at": "2025-03-07T17:29:46Z", + "attachment_id": 5285875729, + "content_type": "application/pdf", + "document_markup_layer_id": 60350218, + "filename": "22 13 16 - 1.1 - Underground Soil Waste and Sanitary PVC Drain Piping Vent Piping and Appurtenances.pdf", + "markup_updated_at": "2025-03-07T17:32:12Z", + "state": "outdated", + "updated_at": "2025-03-07T17:29:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JNRTE1CFT5BCG67X821VCVZ1?companyId=8089&projectId=2563870&sig=4d6a5c9a0c302b93d466dc8e3a20bbcd0a4faf43588abba624d9045f53d69d37", + "version_timestamp": "2025-03-07T17:29:46Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-07", + "sent_date": "2025-03-07", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 150606131, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150606132, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-07", + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T15:43:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-12T17:02:48Z", + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-21", + "formatted_number": "22 13 16.1-3", + "issue_date": "2025-03-07", + "last_distributed_submittal": { + "id": 26380722, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 36960988, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5294527639, + "content_type": "application/pdf", + "filename": "22 13 16-1.1 - Underground Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances - PD_HMG.pdf", + "source_prostore_file_id": 5294527639, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP59TJQ9BR36TFFQAHGP1DCF?companyId=8089&projectId=2563870&sig=5331f89d157c019e779540796a70e2070a771a5c09944c1e3352cf1f0026c5d1", + "viewable_document_id": 813535054 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 150606138, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "MJ,
\nPlease resubmit with a compliance check of the IFC specifications.
", + "sent_at": "2025-03-12T17:02:48Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-03-21", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 37096790, + "current_revision_id": 45441171, + "description": "SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "label": "22 13 16.1 - SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "number": "22 13 16.1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331420 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Underground: Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-21T13:33:45Z" + }, + { + "id": 61592199, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150614692, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136949198, + "additional_page_count": 0, + "attached_at": "2025-03-31T18:21:56Z", + "attachment_id": 5334397742, + "content_type": "application/pdf", + "document_markup_layer_id": 61374111, + "filename": "23 21 23-1.1 - Pumps - PD_ACR_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-31T18:21:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPPZK3HTKGFF415ZA0T8MS2?companyId=8089&projectId=2563870&sig=8b1769674701ee33b9f85373e49ae1f647b772a666613e9e82960391ed12df03", + "version_timestamp": "2025-03-31T18:21:56Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-31", + "sent_date": "2025-03-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 150614693, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150614694, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 150614688, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136888016, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:57:51Z", + "attachment_id": 5331730447, + "content_type": "application/pdf", + "document_markup_layer_id": 61318899, + "filename": "232123-01-01 - ACR Sbtl Review - Hydronic Pumps.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T20:57:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF8QMRJNYX61JDZKMWKZ01T?companyId=8089&projectId=2563870&sig=48e94dd8ed089e7cc3aa31a59e6323ec1f952382cb4e6238a8d5350d165be49c", + "version_timestamp": "2025-03-28T20:57:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 150614689, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150614690, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150614691, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150614686, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136630002, + "additional_page_count": 1, + "attached_at": "2025-03-25T14:13:30Z", + "attachment_id": 5321644388, + "content_type": "application/pdf", + "document_markup_layer_id": 61105624, + "filename": "23 2123 - Hydronic Pumps Resubmittal.pdf", + "markup_updated_at": "2025-03-25T14:38:19Z", + "state": "excluded", + "updated_at": "2025-03-25T14:38:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6TD54JET50AW0P55Z7C18K?companyId=8089&projectId=2563870&sig=aff3f3abe0e0c04c1f3d52b1a26161aff89e9878223f88340dd5a09b3f612b43", + "version_timestamp": "2025-03-25T14:38:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150614687, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150614683, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136627818, + "additional_page_count": 1, + "attached_at": "2025-03-25T14:13:30Z", + "attachment_id": 5321644388, + "content_type": "application/pdf", + "document_markup_layer_id": 61105624, + "filename": "23 2123 - Hydronic Pumps Resubmittal.pdf", + "markup_updated_at": "2025-03-25T14:38:19Z", + "state": "outdated", + "updated_at": "2025-03-25T14:13:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ6TD54JET50AW0P55Z7C18K?companyId=8089&projectId=2563870&sig=aff3f3abe0e0c04c1f3d52b1a26161aff89e9878223f88340dd5a09b3f612b43", + "version_timestamp": "2025-03-25T14:13:30Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": 7, + "workflow_group_number": 0 + }, + { + "id": 150614685, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150614684, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150614682, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T16:28:36Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-31T18:28:36Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-04", + "formatted_number": "23 21 23-1", + "issue_date": "2025-03-07", + "last_distributed_submittal": { + "id": 26627585, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37323662, + "comment": null, + "distributed_attachments": [ + { + "id": 5334397742, + "content_type": "application/pdf", + "filename": "23 21 23-1.1 - Pumps - PD_ACR_HMG.pdf", + "source_prostore_file_id": 5334397742, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPPZK3HTKGFF415ZA0T8MS2?companyId=8089&projectId=2563870&sig=8b1769674701ee33b9f85373e49ae1f647b772a666613e9e82960391ed12df03", + "viewable_document_id": 820571938 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150614692, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-31T18:28:36Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037814, + "current_revision_id": 45441228, + "description": "PUMPS", + "label": "23 21 23 - PUMPS", + "number": "23 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331494 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pumps (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-10T12:58:51Z" + }, + { + "id": 61598387, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T18:28:46Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "101419-5", + "issue_date": "2025-03-07", + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-17", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037750, + "current_revision_id": 44088283, + "description": "Dimensional Letter Signage", + "label": "101419 - Dimensional Letter Signage", + "number": "101419", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023503 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-06", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2785054, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "010.A", + "specification_section_id": null, + "submittal_ids": [ + 61598387, + 60266902, + 60268260, + 60266932, + 60262378, + 60269203, + 60262396, + 60264605, + 60267733, + 60262091, + 60262693, + 60253817, + 60261994, + 60269319, + 60265737, + 60262726, + 60262116, + 60263004, + 60269289, + 60267746, + 60265722, + 60263449, + 60265383, + 60262995, + 60262719, + 60269151, + 60268782, + 60268086, + 60269176, + 60268735, + 60265366, + 60265392, + 60265045, + 60267786, + 60265694, + 60263464, + 60265158, + 60268854, + 60265081, + 60264586, + 60264565, + 60263019, + 60269307, + 60266881, + 60268178, + 60263439 + ], + "title": "Division 010 Action Submittal", + "updated_at": "2025-01-17T16:36:15Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Dimensional Letter Signage (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:52Z" + }, + { + "id": 61599091, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T18:44:02Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "115213-1", + "issue_date": "2025-03-07", + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-23", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096781, + "current_revision_id": 45441151, + "description": "PROJECTION SCREENS", + "label": "115213 - PROJECTION SCREENS", + "number": "115213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331376 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2026-01-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786013, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "011.A", + "specification_section_id": null, + "submittal_ids": [ + 61599091, + 60281990, + 60281846, + 60282145, + 60282237, + 60281880, + 60281964, + 60281978, + 60281892, + 60281869, + 60282093, + 60282136, + 60282124 + ], + "title": "Division 011 Action Submittals", + "updated_at": "2025-01-16T13:41:57Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Projection Screens (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:52Z" + }, + { + "id": 61599255, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T18:47:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "133100-1", + "issue_date": "2025-03-07", + "last_distributed_submittal": null, + "lead_time": 45, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-16", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096785, + "current_revision_id": 45441159, + "description": "FABRIC STRUCTURES", + "label": "133100 - FABRIC STRUCTURES", + "number": "133100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331391 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-12-12", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2834238, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "013.A", + "specification_section_id": 37096785, + "submittal_ids": [ + 61599255 + ], + "title": "Division 13 Action Submittals", + "updated_at": "2025-03-07T18:47:10Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fabric Structures (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:52Z" + }, + { + "id": 61599888, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153613706, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142316425, + "additional_page_count": 0, + "attached_at": "2025-07-14T19:51:57Z", + "attachment_id": 5555452128, + "content_type": "application/pdf", + "document_markup_layer_id": 65914789, + "filename": "21 10 00-2.0 - Fire Sprinkler AFD-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-14T19:51:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K057TVSJAB3KGED5TA4CS8K5?companyId=8089&projectId=2563870&sig=4a11441ca4f27cdf95b6145853bc375082472d6e80dd927b675fad7440b0030d", + "version_timestamp": "2025-07-14T19:51:57Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 4, + "workflow_group_number": 2 + }, + { + "id": 153613709, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613707, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613704, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141346874, + "additional_page_count": 1, + "attached_at": "2025-06-24T15:30:35Z", + "attachment_id": 5513040536, + "content_type": "application/pdf", + "document_markup_layer_id": 64955945, + "filename": "21 00 00 - 2.0 - FS Product Data.pdf", + "markup_updated_at": "2025-06-24T15:35:08Z", + "state": "excluded", + "updated_at": "2025-06-24T15:35:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH8ZK3JXXY1J5HHRZR0DM4A?companyId=8089&projectId=2563870&sig=9d99ee0bef4f13016e83968005436627c84534d33d6c7d9ecbe0434ae1a1e5a4", + "version_timestamp": "2025-06-24T15:35:08Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153613705, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613703, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141346331, + "additional_page_count": 1, + "attached_at": "2025-06-24T15:30:35Z", + "attachment_id": 5513040536, + "content_type": "application/pdf", + "document_markup_layer_id": 64955945, + "filename": "21 00 00 - 2.0 - FS Product Data.pdf", + "markup_updated_at": "2025-06-24T15:35:08Z", + "state": "outdated", + "updated_at": "2025-06-24T15:30:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH8ZK3JXXY1J5HHRZR0DM4A?companyId=8089&projectId=2563870&sig=9d99ee0bef4f13016e83968005436627c84534d33d6c7d9ecbe0434ae1a1e5a4", + "version_timestamp": "2025-06-24T15:30:35Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": 42, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T18:56:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-17T13:15:20Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-08", + "formatted_number": "21 10 00-2", + "issue_date": "2025-03-07", + "last_distributed_submittal": { + "id": 28052905, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439410, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5555452128, + "content_type": "application/pdf", + "filename": "21 10 00-2.0 - Fire Sprinkler AFD-PD_H2MG.pdf", + "source_prostore_file_id": 5555452128, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K057TVSJAB3KGED5TA4CS8K5?companyId=8089&projectId=2563870&sig=4a11441ca4f27cdf95b6145853bc375082472d6e80dd927b675fad7440b0030d", + "viewable_document_id": 858721576 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 153613706, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 8596985, + "initials": "CO", + "name": "Chris Orr", + "vendor_name": "Firetron, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T13:15:20Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": "2025-05-20", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-15", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Sprinkler AFD (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T13:15:20Z" + }, + { + "id": 61601053, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T19:17:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "274116-1", + "issue_date": "2025-03-07", + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096898, + "current_revision_id": 45441323, + "description": "INTEGRATED AUDIOVISUAL SYSTEMS", + "label": "274116 - INTEGRATED AUDIOVISUAL SYSTEMS", + "number": "274116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331603 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Integrated A/V System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-08T12:30:54Z" + }, + { + "id": 61601085, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-07T19:17:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "274116-2", + "issue_date": "2025-03-07", + "last_distributed_submittal": null, + "lead_time": 13, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-31", + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096898, + "current_revision_id": 45441323, + "description": "INTEGRATED AUDIOVISUAL SYSTEMS", + "label": "274116 - INTEGRATED AUDIOVISUAL SYSTEMS", + "number": "274116", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331603 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786716, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "027.A", + "specification_section_id": null, + "submittal_ids": [ + 61601053, + 61601085, + 60296441, + 60296538, + 60296364, + 60296565 + ], + "title": "Division 027 Action Submittals", + "updated_at": "2025-01-17T16:42:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Integrated A/V System (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-08T12:30:54Z" + }, + { + "id": 61658780, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150835088, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136885854, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:30:41Z", + "attachment_id": 5331650535, + "content_type": "application/pdf", + "document_markup_layer_id": 61339565, + "filename": "05 12 00-10.0 - Area B Structural Steel Seq 6-SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-28T20:30:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF73YEEQSQWQXN4T0DX93MP?companyId=8089&projectId=2563870&sig=e761086915554e75183242a815fa6a1d4e14485fd1708e203751dc11d8a8b9d9", + "version_timestamp": "2025-03-28T20:30:41Z" + }, + { + "id": 136754751, + "additional_page_count": 0, + "attached_at": "2025-03-26T22:15:29Z", + "attachment_id": 5326497973, + "content_type": "application/pdf", + "document_markup_layer_id": 61311646, + "filename": "05 12 00-10.0 - Area B Structural Steel Seq 6-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-26T22:15:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQA881G0401GGR5GTC084KT8?companyId=8089&projectId=2563870&sig=481c717c6a59e0420f1d2d6f10b114002839c56252fd013a14d8d7ee400c1231", + "version_timestamp": "2025-03-26T22:15:29Z" + } + ], + "comment": "Note Structural Engineer's requirement for signed and sealed calculations for required steel connections for review.", + "days_to_respond": 10, + "due_date": "2025-04-11", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-22", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 150835087, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-22", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150835086, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136520429, + "additional_page_count": 0, + "attached_at": "2025-03-22T13:47:51Z", + "attachment_id": 5317294672, + "content_type": "application/pdf", + "document_markup_layer_id": 61051570, + "filename": "05 12 00 10.0 - Area B Structural Steel Sequence 6 (SD)_RO.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-22T13:47:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPZ1QV39H66AQWV7VY151PR7?companyId=8089&projectId=2563870&sig=f6582dc6ec102c9856a464c3d8bc8171596f59fb2d0eff04082f557cda1e13fe", + "version_timestamp": "2025-03-22T13:47:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-31", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-22", + "sent_date": "2025-03-22", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150835085, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-22", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150835084, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136520063, + "additional_page_count": 1, + "attached_at": "2025-03-22T12:22:51Z", + "attachment_id": 5317261940, + "content_type": "application/pdf", + "document_markup_layer_id": 61007365, + "filename": "05 12 00 10.0 - Area B Structural Steel Sequence 6 (SD).pdf", + "markup_updated_at": "2025-03-22T13:45:38Z", + "state": "excluded", + "updated_at": "2025-03-22T12:22:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPYWWAGFKETX4PJMVZN268M0?companyId=8089&projectId=2563870&sig=db796f6c3901459c10fc0631e5336e3aeda18414ba9f4a15f415769bb34232fd", + "version_timestamp": "2025-03-22T12:22:51Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-22", + "sent_date": null, + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": -1, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-11T12:59:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-31T12:33:18Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-11", + "formatted_number": "051200-10", + "issue_date": "2025-03-11", + "last_distributed_submittal": { + "id": 26615754, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37307390, + "comment": null, + "distributed_attachments": [ + { + "id": 5331650535, + "content_type": "application/pdf", + "filename": "05 12 00-10.0 - Area B Structural Steel Seq 6-SD_STR_fgma.pdf", + "source_prostore_file_id": 5331650535, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF73YEEQSQWQXN4T0DX93MP?companyId=8089&projectId=2563870&sig=e761086915554e75183242a815fa6a1d4e14485fd1708e203751dc11d8a8b9d9", + "viewable_document_id": 820093847 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150835088, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron,
\nSee returned submittal. Fabricate as noted and provide lead time. reference file ending in \"fgma\".
", + "sent_at": "2025-03-31T12:33:18Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "10", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-07-03", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B Structural Steel Sequence 6 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-03-31T12:33:18Z" + }, + { + "id": 61658800, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152417971, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136961779, + "additional_page_count": 0, + "attached_at": "2025-03-31T20:05:42Z", + "attachment_id": 5334879037, + "content_type": "application/pdf", + "document_markup_layer_id": 61406535, + "filename": "05 12 00-11.0 - Structural Steel Framing - Area B Seq. 7-SD_STR_fgma.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-31T20:05:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPWW0EKWH5FGHQNFC16D1H8?companyId=8089&projectId=2563870&sig=53cb7c0679e0a7a64e9e944284c06a99fc930332c86d1176d2a23cf77156b765", + "version_timestamp": "2025-03-31T20:05:42Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-11", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-31", + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 150835018, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150835017, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150835016, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136876872, + "additional_page_count": 0, + "attached_at": "2025-03-28T18:57:28Z", + "attachment_id": 5331348715, + "content_type": "application/pdf", + "document_markup_layer_id": 61311877, + "filename": "05 12 00 11.0 - Area B Structural Steel Sequence 7 (SD)_RO review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T18:57:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF1V36TWSVQHKX17XD3PTG0?companyId=8089&projectId=2563870&sig=11abc377a5c2e874806774a262d951a7121844c60bcf6756b4719cfa755095c6", + "version_timestamp": "2025-03-28T18:57:28Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-28", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150835015, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150835014, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136853370, + "additional_page_count": 1, + "attached_at": "2025-03-28T14:50:00Z", + "attachment_id": 5330439790, + "content_type": "application/pdf", + "document_markup_layer_id": 61295511, + "filename": "05 12 00 11.0 - Area B Structural Steel Sequence 7 (SD).pdf", + "markup_updated_at": "2025-03-28T15:22:24Z", + "state": "excluded", + "updated_at": "2025-03-28T14:50:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQEKMWP7E3S7BW63P9X5Q4MK?companyId=8089&projectId=2563870&sig=7e32c76874a01ab1d6d47edddd86021dc07ccf75bd16ecd85dbb99f595fe2780", + "version_timestamp": "2025-03-28T14:50:00Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-24", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 3, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-11T13:00:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-01T12:52:04Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-11", + "formatted_number": "051200-11", + "issue_date": "2025-03-11", + "last_distributed_submittal": { + "id": 26637620, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37337828, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5334879037, + "content_type": "application/pdf", + "filename": "05 12 00-11.0 - Structural Steel Framing - Area B Seq. 7-SD_STR_fgma.pdf", + "source_prostore_file_id": 5334879037, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQPWW0EKWH5FGHQNFC16D1H8?companyId=8089&projectId=2563870&sig=53cb7c0679e0a7a64e9e944284c06a99fc930332c86d1176d2a23cf77156b765", + "viewable_document_id": 820649197 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 152417971, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11773778, + "initials": "AG", + "name": "Aaron Glover", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Aaron, please fabricate as noted.
", + "sent_at": "2025-04-01T12:52:04Z" + }, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "11", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-07-03", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-17", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B Structural Steel Sequence 7 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-04-01T12:52:04Z" + }, + { + "id": 61704275, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150970768, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136249828, + "additional_page_count": 0, + "attached_at": "2025-03-18T14:08:30Z", + "attachment_id": 5306575466, + "content_type": "application/pdf", + "document_markup_layer_id": 60786956, + "filename": "23 64 23-1.2 - Scroll Water Chillers R1 for Record_HMG response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-18T14:08:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPMSARRCXXH5RXMY9DNHE98M?companyId=8089&projectId=2563870&sig=0f732703c7a7aae1913aaea62412946b0ba0281511a77689adfe834d27ccad2d", + "version_timestamp": "2025-03-18T14:08:30Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-18", + "sent_date": "2025-03-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 150970770, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150970769, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150970767, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136004908, + "additional_page_count": 1, + "attached_at": "2025-03-12T22:34:24Z", + "attachment_id": 5296556314, + "content_type": "application/pdf", + "document_markup_layer_id": 60576372, + "filename": "23 64 23 1.2 - Scroll Water Chiller (For Record).pdf", + "markup_updated_at": "2025-03-12T22:37:08Z", + "state": "excluded", + "updated_at": "2025-03-12T22:37:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP67WZZD2SB2SEMGQ5WWYD58?companyId=8089&projectId=2563870&sig=b150d8baaccfd9ecf15933389d660db7487c031d98059721858da0390cabd3bb", + "version_timestamp": "2025-03-12T22:37:08Z" + } + ], + "comment": "See revision with compliance. For record submission.", + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-03-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150970766, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150970763, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136004810, + "additional_page_count": 1, + "attached_at": "2025-03-12T22:34:24Z", + "attachment_id": 5296556314, + "content_type": "application/pdf", + "document_markup_layer_id": 60576372, + "filename": "23 64 23 1.2 - Scroll Water Chiller (For Record).pdf", + "markup_updated_at": "2025-03-12T22:37:08Z", + "state": "outdated", + "updated_at": "2025-03-12T22:34:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JP67WZZD2SB2SEMGQ5WWYD58?companyId=8089&projectId=2563870&sig=b150d8baaccfd9ecf15933389d660db7487c031d98059721858da0390cabd3bb", + "version_timestamp": "2025-03-12T22:34:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-12", + "sent_date": "2025-03-12", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 150970762, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150970764, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150970765, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-12", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-12T14:40:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-18T17:46:39Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-26", + "formatted_number": "23 64 23-1", + "issue_date": "2025-03-12", + "last_distributed_submittal": { + "id": 26456743, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37072480, + "comment": "", + "distributed_attachments": [ + { + "id": 5306575466, + "content_type": "application/pdf", + "filename": "23 64 23-1.2 - Scroll Water Chillers R1 for Record_HMG response.pdf", + "source_prostore_file_id": 5306575466, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPMSARRCXXH5RXMY9DNHE98M?companyId=8089&projectId=2563870&sig=0f732703c7a7aae1913aaea62412946b0ba0281511a77689adfe834d27ccad2d", + "viewable_document_id": 815685930 + } + ], + "response_name": "For Record Only", + "submittal_approver_id": 150970768, + "submittal_response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "submittal_response_id": 23348894, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "Please see response for your records.
", + "sent_at": "2025-03-18T17:46:39Z" + }, + "lead_time": 245, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2025-07-17", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037821, + "current_revision_id": 44088333, + "description": "SCROLL WATER CHILLERS", + "label": "23 64 23 - SCROLL WATER CHILLERS", + "number": "23 64 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023785 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2024-10-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Scroll Water Chillers R2 (For Record)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-03-18T17:46:39Z" + }, + { + "id": 61713579, + "actual_delivery_date": null, + "approvers": [ + { + "id": 150999521, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136485934, + "additional_page_count": 0, + "attached_at": "2025-03-21T16:29:59Z", + "attachment_id": 5315879620, + "content_type": "application/pdf", + "document_markup_layer_id": 61007519, + "filename": "22 13 16.1-3.2 - Underground-Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances-PD - HMG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-21T16:29:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWRKAWV34BKB1TH25ZFMCVD?companyId=8089&projectId=2563870&sig=48c0cae98dec5d7510f4f2f494f047d2ff4b8bb48ea096237f8a5526ce7a9892", + "version_timestamp": "2025-03-21T16:29:59Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-21", + "sent_date": "2025-03-21", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 150999522, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150999523, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150999524, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 150999519, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136474057, + "additional_page_count": 1, + "attached_at": "2025-03-21T14:31:15Z", + "attachment_id": 5315413453, + "content_type": "application/pdf", + "document_markup_layer_id": 60972877, + "filename": "22 13 16.1 - 3.2 - Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances (PD).pdf", + "markup_updated_at": "2025-03-21T14:34:16Z", + "state": "excluded", + "updated_at": "2025-03-21T14:34:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWHTTKA2QEX0Y0KZ83ZHJ3D?companyId=8089&projectId=2563870&sig=0e760883c719709b308629354d40c25ba38156c29381e2607d2f76a4f544f337", + "version_timestamp": "2025-03-21T14:34:16Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-21", + "sent_date": "2025-03-21", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 150999520, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-21", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 150999518, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136473806, + "additional_page_count": 1, + "attached_at": "2025-03-21T14:31:15Z", + "attachment_id": 5315413453, + "content_type": "application/pdf", + "document_markup_layer_id": 60972877, + "filename": "22 13 16.1 - 3.2 - Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances (PD).pdf", + "markup_updated_at": "2025-03-21T14:34:16Z", + "state": "outdated", + "updated_at": "2025-03-21T14:31:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWHTTKA2QEX0Y0KZ83ZHJ3D?companyId=8089&projectId=2563870&sig=0e760883c719709b308629354d40c25ba38156c29381e2607d2f76a4f544f337", + "version_timestamp": "2025-03-21T14:31:15Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-21", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -3, + "workflow_group_number": 0 + }, + { + "id": 150999517, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 150999516, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-12T17:31:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-03-22T14:27:01Z", + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-03-28", + "formatted_number": "22 13 16.1-3", + "issue_date": "2025-03-12", + "last_distributed_submittal": { + "id": 26516820, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37159986, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5315879620, + "content_type": "application/pdf", + "filename": "22 13 16.1-3.2 - Underground-Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances-PD - HMG Response.pdf", + "source_prostore_file_id": 5315879620, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPWRKAWV34BKB1TH25ZFMCVD?companyId=8089&projectId=2563870&sig=48c0cae98dec5d7510f4f2f494f047d2ff4b8bb48ea096237f8a5526ce7a9892", + "viewable_document_id": 817295579 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 150999521, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "MJ,
\nSee approved submittal for your records and submit other UG materials for review.
", + "sent_at": "2025-03-22T14:27:01Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-03-21", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 37096790, + "current_revision_id": 45441171, + "description": "SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "label": "22 13 16.1 - SOIL, WASTE AND SANITARY PVC DRAIN PIPING, VENT PIPING AND APPURTENANCES", + "number": "22 13 16.1", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331420 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Underground: Soil, Waste and Sanitary PVC Drain Piping, Vent Piping and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-24T12:27:47Z" + }, + { + "id": 61881235, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151575011, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136718560, + "additional_page_count": 0, + "attached_at": "2025-03-26T16:17:20Z", + "attachment_id": 5325161768, + "content_type": "application/pdf", + "document_markup_layer_id": 61197749, + "filename": "23 30 00-2.0 - Ductcwork - Air Duct Accessories-PD_ACR_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-26T16:17:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ9KV8VXRT1NQPTS31VB521T?companyId=8089&projectId=2563870&sig=f1d31b5736d7c546f2fc497c0cdb695571134af01f3a338f9daa2ccee3b88d6c", + "version_timestamp": "2025-03-26T16:17:20Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-26", + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 151575010, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 151575006, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136680226, + "additional_page_count": 0, + "attached_at": "2025-03-25T22:48:07Z", + "attachment_id": 5323570344, + "content_type": "application/pdf", + "document_markup_layer_id": 61148561, + "filename": "233300-02-00 - ACR Sbtl Review - Air Duct Accessories.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-25T22:48:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7QVEA88F9VN0BRWK7CNMAT?companyId=8089&projectId=2563870&sig=1940b83112c6eaab3915a1e8dfb97720634636866bdaadc3b70a62cfa9f938c0", + "version_timestamp": "2025-03-25T22:48:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 151575007, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151575008, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151575009, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151575000, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136334348, + "additional_page_count": 1, + "attached_at": "2025-03-19T14:00:43Z", + "attachment_id": 5309536143, + "content_type": "application/pdf", + "document_markup_layer_id": 60856149, + "filename": "23 30 00 -1.0 - Air Duct Accessories (PD).pdf", + "markup_updated_at": "2025-03-19T15:15:20Z", + "state": "excluded", + "updated_at": "2025-03-19T15:15:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQB9HS2VJ8KY2QC5WR1CAT3?companyId=8089&projectId=2563870&sig=4cf99f283a8db12613dc73d15c0f48d1b47aacdddd5958daa755324db1545313", + "version_timestamp": "2025-03-19T15:15:20Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 151575005, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151575002, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151574996, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136326080, + "additional_page_count": 1, + "attached_at": "2025-03-19T14:00:43Z", + "attachment_id": 5309536143, + "content_type": "application/pdf", + "document_markup_layer_id": 60856149, + "filename": "23 30 00 -1.0 - Air Duct Accessories (PD).pdf", + "markup_updated_at": "2025-03-19T15:15:20Z", + "state": "outdated", + "updated_at": "2025-03-19T14:00:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQB9HS2VJ8KY2QC5WR1CAT3?companyId=8089&projectId=2563870&sig=4cf99f283a8db12613dc73d15c0f48d1b47aacdddd5958daa755324db1545313", + "version_timestamp": "2025-03-19T14:00:43Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 151574998, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 151574997, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 151574995, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-19T14:00:22Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-31T18:28:56Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-01", + "formatted_number": "23 30 00-2", + "issue_date": "2025-03-19", + "last_distributed_submittal": { + "id": 26627595, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37323674, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5325161768, + "content_type": "application/pdf", + "filename": "23 30 00-2.0 - Ductcwork - Air Duct Accessories-PD_ACR_HMG.pdf", + "source_prostore_file_id": 5325161768, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ9KV8VXRT1NQPTS31VB521T?companyId=8089&projectId=2563870&sig=f1d31b5736d7c546f2fc497c0cdb695571134af01f3a338f9daa2ccee3b88d6c", + "viewable_document_id": 818975845 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 151575011, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-31T18:28:56Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Duct Accessories (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-25T19:33:12Z" + }, + { + "id": 61884592, + "actual_delivery_date": null, + "approvers": [ + { + "id": 151586803, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136376537, + "additional_page_count": 0, + "attached_at": "2025-03-19T22:02:26Z", + "attachment_id": 5311420791, + "content_type": "application/pdf", + "document_markup_layer_id": 60905282, + "filename": "33 40 00-4.0 - Storm Water Piping - Roof Drain Leads_PD_Civil review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-19T22:02:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR6TZG591PA2Y03FVT7GPT8?companyId=8089&projectId=2563870&sig=8e499e839b23325588e9c6d0fdf7496b41774d048b1cbee3311238f12d379673", + "version_timestamp": "2025-03-19T22:02:26Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 151586802, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151586804, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 151586801, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136337304, + "additional_page_count": 1, + "attached_at": "2025-03-19T15:23:42Z", + "attachment_id": 5309882300, + "content_type": "application/pdf", + "document_markup_layer_id": 60858891, + "filename": "334000 - Roof Drain Leaads.pdf", + "markup_updated_at": "2025-03-19T15:43:25Z", + "state": "excluded", + "updated_at": "2025-03-19T15:43:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQFWYK37D6AG5K0V6CXYYC7?companyId=8089&projectId=2563870&sig=c6a1dff394d798690cfde22feb7bda38109a15009b9d5a3c061e09bffee5abf2", + "version_timestamp": "2025-03-19T15:43:25Z" + } + ], + "comment": "Please review product based off RFI response.", + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": "2025-03-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 151586800, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-03-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151586799, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136335315, + "additional_page_count": 1, + "attached_at": "2025-03-19T15:23:42Z", + "attachment_id": 5309882300, + "content_type": "application/pdf", + "document_markup_layer_id": 60858891, + "filename": "334000 - Roof Drain Leaads.pdf", + "markup_updated_at": "2025-03-19T15:43:25Z", + "state": "outdated", + "updated_at": "2025-03-19T15:23:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPQFWYK37D6AG5K0V6CXYYC7?companyId=8089&projectId=2563870&sig=c6a1dff394d798690cfde22feb7bda38109a15009b9d5a3c061e09bffee5abf2", + "version_timestamp": "2025-03-19T15:23:42Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-02", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-19", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-19T15:14:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-20T12:40:30Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-02", + "formatted_number": "33 40 00-4", + "issue_date": "2025-03-19", + "last_distributed_submittal": { + "id": 26486222, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37115949, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5311420791, + "content_type": "application/pdf", + "filename": "33 40 00-4.0 - Storm Water Piping - Roof Drain Leads_PD_Civil review.pdf", + "source_prostore_file_id": 5311420791, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JPR6TZG591PA2Y03FVT7GPT8?companyId=8089&projectId=2563870&sig=8e499e839b23325588e9c6d0fdf7496b41774d048b1cbee3311238f12d379673", + "viewable_document_id": 816513463 + } + ], + "response_name": "Approved", + "submittal_approver_id": 151586803, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12431442, + "initials": "JD", + "name": "Josh Duran", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as selected.
", + "sent_at": "2025-03-20T12:40:30Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-09-24", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-03-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Roof Drain Leads (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-03-20T12:40:30Z" + }, + { + "id": 61887046, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162480423, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 151594508, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 151594510, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162480161, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 11174551, + "initials": "CG", + "name": "Chris Guzman", + "vendor": { + "id": 19053337, + "name": "Austin Coatings Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-03-19T15:57:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "Compatibility Certificates and Test Reports", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "051200-12", + "issue_date": "2025-03-19", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "12", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Steel Primer Compatibility Certificates (PD)", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-08-01T11:30:16Z" + }, + { + "id": 62037962, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152125078, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136890803, + "additional_page_count": 0, + "attached_at": "2025-03-28T21:44:24Z", + "attachment_id": 5331836604, + "content_type": "application/pdf", + "document_markup_layer_id": 61340142, + "filename": "22 13 19.13-1.0 - Hydrants, Cleanouts & Appurtenances - Grease Interceptor_HMG_ACR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-03-28T21:44:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQFBBGQ9WJCXTHEVW0VDBVXT?companyId=8089&projectId=2563870&sig=5c7fb6cc1f2b83d4a4e1497dc7f8a25289bb28100c1cfee454c8567c227bc34b", + "version_timestamp": "2025-03-28T21:44:24Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-28", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 152125077, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152125079, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-28", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152125073, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136888061, + "additional_page_count": 0, + "attached_at": "2025-03-28T20:58:14Z", + "attachment_id": 5331731755, + "content_type": "application/pdf", + "document_markup_layer_id": 61319452, + "filename": "221319.13-01-00 - ACR Sbtl Review - Grease Interceptor.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-28T20:58:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQF8REV0Z124AWFTS4HDFFAD?companyId=8089&projectId=2563870&sig=57981bf74cdb184029e808bb5acb03ea185bd6cf5ce6ea0384efe5fcbaadfed0", + "version_timestamp": "2025-03-28T20:58:14Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-28", + "sent_date": "2025-03-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 152125074, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152125075, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152125076, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152125071, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136674032, + "additional_page_count": 1, + "attached_at": "2025-03-25T21:12:05Z", + "attachment_id": 5323334644, + "content_type": "application/pdf", + "document_markup_layer_id": 61144072, + "filename": "22 13 19.13 1.0 - Grease Interceptor (PD).pdf", + "markup_updated_at": "2025-03-25T21:14:52Z", + "state": "excluded", + "updated_at": "2025-03-25T21:14:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7JBMK5R1Y1KWPXNG6ZXB2F?companyId=8089&projectId=2563870&sig=b873169e32c7131659385f15f1b738a153ad18fd442cb1507c6b0e68002f333b", + "version_timestamp": "2025-03-25T21:14:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": "2025-03-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152125072, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152125070, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136673824, + "additional_page_count": 1, + "attached_at": "2025-03-25T21:12:05Z", + "attachment_id": 5323334644, + "content_type": "application/pdf", + "document_markup_layer_id": 61144072, + "filename": "22 13 19.13 1.0 - Grease Interceptor (PD).pdf", + "markup_updated_at": "2025-03-25T21:14:52Z", + "state": "outdated", + "updated_at": "2025-03-25T21:12:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQ7JBMK5R1Y1KWPXNG6ZXB2F?companyId=8089&projectId=2563870&sig=b873169e32c7131659385f15f1b738a153ad18fd442cb1507c6b0e68002f333b", + "version_timestamp": "2025-03-25T21:12:05Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-25", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 152125069, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152125068, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-25T19:58:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-03-31T18:26:18Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-04", + "formatted_number": "22 13 19.13-1", + "issue_date": "2025-03-25", + "last_distributed_submittal": { + "id": 26627493, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37323532, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5331836604, + "content_type": "application/pdf", + "filename": "22 13 19.13-1.0 - Hydrants, Cleanouts & Appurtenances - Grease Interceptor_HMG_ACR.pdf", + "source_prostore_file_id": 5331836604, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQFBBGQ9WJCXTHEVW0VDBVXT?companyId=8089&projectId=2563870&sig=5c7fb6cc1f2b83d4a4e1497dc7f8a25289bb28100c1cfee454c8567c227bc34b", + "viewable_document_id": 820126593 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152125078, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-03-31T18:26:18Z" + }, + "lead_time": 42, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-07-23", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096791, + "current_revision_id": 45441173, + "description": "DRAINS, HYDRANTS, CLEANOUTS AND APPURTENANCES", + "label": "22 13 19.13 - DRAINS, HYDRANTS, CLEANOUTS AND APPURTENANCES", + "number": "22 13 19.13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331423 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Grease Interceptor", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-03T15:43:14Z" + }, + { + "id": 62090513, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152321218, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143694784, + "additional_page_count": 0, + "attached_at": "2025-08-11T17:00:41Z", + "attachment_id": 5616413755, + "content_type": "application/pdf", + "document_markup_layer_id": 66926279, + "filename": "05 52 13-2.1 - Pipe And tube Railings-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-11T17:00:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2D16W3P2RY0CF6J82599Q4N?companyId=8089&projectId=2563870&sig=1dfc78d3e6c88da3499c91785e27ccab1e9a7dedc67e00a93a0cd11a223e522d", + "version_timestamp": "2025-08-11T17:00:41Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-08-06", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-08-11", + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 3, + "workflow_group_number": 2 + }, + { + "id": 152321217, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142821554, + "additional_page_count": 0, + "attached_at": "2025-07-23T20:09:11Z", + "attachment_id": 5577234514, + "content_type": "application/pdf", + "document_markup_layer_id": 66350983, + "filename": "05 52 13 2.1 - Pipe and tube Railings (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-23T20:09:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0WEAVQBR5X65N1XT45TXK8Y?companyId=8089&projectId=2563870&sig=fab4dcfd7d4ab5f44bd02c4ae9caf10bf75b0e7364984c3ac8f775750941515d", + "version_timestamp": "2025-07-23T20:09:11Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": "2025-07-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152321216, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161281893, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142807909, + "additional_page_count": 0, + "attached_at": "2025-07-23T18:00:02Z", + "attachment_id": 5576714500, + "content_type": "application/pdf", + "document_markup_layer_id": 66177691, + "filename": "05 52 13 2.1 - Pipe and tube Railings (SD).pdf", + "markup_updated_at": "2025-07-23T20:05:51Z", + "state": "excluded", + "updated_at": "2025-07-23T18:00:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0W726CFXBNHCRC0ZNDDNCXV?companyId=8089&projectId=2563870&sig=83332c7978507fbc303e4ec563bd88fbdb398ee890a3bb67f0f8bf2c5f5ae4d8", + "version_timestamp": "2025-07-23T18:00:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": true, + "returned_date": "2025-07-22", + "sent_date": null, + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": 78, + "workflow_group_number": 0 + }, + { + "id": 152321214, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-27T16:05:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-11T22:08:45Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-06", + "formatted_number": "055213-2", + "issue_date": "2025-03-27", + "last_distributed_submittal": { + "id": 28368157, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39904760, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5616413755, + "content_type": "application/pdf", + "filename": "05 52 13-2.1 - Pipe And tube Railings-SD_FGMA.pdf", + "source_prostore_file_id": 5616413755, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2D16W3P2RY0CF6J82599Q4N?companyId=8089&projectId=2563870&sig=1dfc78d3e6c88da3499c91785e27ccab1e9a7dedc67e00a93a0cd11a223e522d", + "viewable_document_id": 869345073 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152321218, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please provide rail calculations.
", + "sent_at": "2025-08-11T22:08:45Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 9943247, + "name": "Nathan Strange" + }, + "required_on_site_date": "2026-03-09", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037664, + "current_revision_id": 45441070, + "description": "PIPE AND TUBE RAILINGS", + "label": "055213 - PIPE AND TUBE RAILINGS", + "number": "055213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331072 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2026-01-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pipe And tube Railings (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-11T22:09:11Z" + }, + { + "id": 62092111, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152324778, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137218494, + "additional_page_count": 0, + "attached_at": "2025-04-04T14:22:12Z", + "attachment_id": 5345108373, + "content_type": "application/pdf", + "document_markup_layer_id": 61601050, + "filename": "23 73 00-1.2 - Indoor Central Station AHU Rev 2 - PD_ACR_HMG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-04T14:22:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR0JVS9AZE8JCAGN6QR7S58G?companyId=8089&projectId=2563870&sig=5364c71603813fee5db27a3b76930bdcc2119fa7728182928e4a45d0c847b9d5", + "version_timestamp": "2025-04-04T14:22:12Z" + } + ], + "comment": "See attached response from H2MG.", + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-04", + "sent_date": "2025-03-29", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 152324777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-29", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152324779, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-29", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152324773, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136899012, + "additional_page_count": 0, + "attached_at": "2025-03-29T21:58:36Z", + "attachment_id": 5332324965, + "content_type": "application/pdf", + "document_markup_layer_id": 61326339, + "filename": "237300-01-2 - ACR Sbtl Review - Air Handling Units-Rev2.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-03-29T21:58:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQHYK33GPR7GFCYRC3QCXXMH?companyId=8089&projectId=2563870&sig=8e2f2c41e8d1549e7a2785493ac197240c9cc0afd9023bf71bd8e439ab4b1659", + "version_timestamp": "2025-03-29T21:58:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-03-29", + "sent_date": "2025-03-27", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 152324776, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152324775, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152324774, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152324770, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 136796207, + "additional_page_count": 1, + "attached_at": "2025-03-27T16:35:12Z", + "attachment_id": 5328109834, + "content_type": "application/pdf", + "document_markup_layer_id": 61246767, + "filename": "23 73 00 - 1.2 - Indoor Air Handlers Resubmittal.pdf", + "markup_updated_at": "2025-03-27T16:38:54Z", + "state": "excluded", + "updated_at": "2025-03-27T16:38:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC79ZJTKYKMNAPZPA4DKR3F?companyId=8089&projectId=2563870&sig=5997861da591bc117571388610054062bf467ba268ca2ec23f12c14134f170da", + "version_timestamp": "2025-03-27T16:38:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": "2025-03-27", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152324771, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152324772, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-03-27", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152324767, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 136795916, + "additional_page_count": 1, + "attached_at": "2025-03-27T16:35:12Z", + "attachment_id": 5328109834, + "content_type": "application/pdf", + "document_markup_layer_id": 61246767, + "filename": "23 73 00 - 1.2 - Indoor Air Handlers Resubmittal.pdf", + "markup_updated_at": "2025-03-27T16:38:54Z", + "state": "outdated", + "updated_at": "2025-03-27T16:35:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQC79ZJTKYKMNAPZPA4DKR3F?companyId=8089&projectId=2563870&sig=5997861da591bc117571388610054062bf467ba268ca2ec23f12c14134f170da", + "version_timestamp": "2025-03-27T16:35:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-03-27", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 152324769, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152324768, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152324766, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-27T16:34:41Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-07", + "formatted_number": "23 73 00-1", + "issue_date": "2025-03-27", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": "2025-02-05", + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037822, + "current_revision_id": 45441253, + "description": "INDOOR CENTRAL STATION AIR HANDLING UNIT", + "label": "23 73 00 - INDOOR CENTRAL STATION AIR HANDLING UNIT", + "number": "23 73 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331519 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Indoor Central Station Air Handling Unit Revision 2 (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T19:53:26Z" + }, + { + "id": 62131890, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153613721, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142083986, + "additional_page_count": 0, + "attached_at": "2025-07-09T16:49:52Z", + "attachment_id": 5545421132, + "content_type": "application/pdf", + "document_markup_layer_id": 65567144, + "filename": "21 10 00-3.0 - Hydraulic Calculations_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-09T16:49:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZR1FEV7J0YEHHM1CYPGNVZP?companyId=8089&projectId=2563870&sig=b1bf6c373f46448dbd0d660785a2bde38005b6eaebd235344902f43df677c1c0", + "version_timestamp": "2025-07-09T16:49:52Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 153613724, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613722, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613719, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141347483, + "additional_page_count": 1, + "attached_at": "2025-06-24T15:37:21Z", + "attachment_id": 5513069731, + "content_type": "application/pdf", + "document_markup_layer_id": 64956571, + "filename": "Submittal - 25A0369 Houston ES - FS Hyd Calcs.pdf", + "markup_updated_at": "2025-06-24T15:40:39Z", + "state": "excluded", + "updated_at": "2025-06-24T15:40:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH9C1CDNHK958A2D8EPEKPA?companyId=8089&projectId=2563870&sig=5d001cce9730e96c28e7b94893ce0a0ed109b53604f1f8d52d14f423e717b67f", + "version_timestamp": "2025-06-24T15:40:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153613720, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613718, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141347109, + "additional_page_count": 1, + "attached_at": "2025-06-24T15:37:21Z", + "attachment_id": 5513069731, + "content_type": "application/pdf", + "document_markup_layer_id": 64956571, + "filename": "Submittal - 25A0369 Houston ES - FS Hyd Calcs.pdf", + "markup_updated_at": "2025-06-24T15:40:39Z", + "state": "outdated", + "updated_at": "2025-06-24T15:37:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYH9C1CDNHK958A2D8EPEKPA?companyId=8089&projectId=2563870&sig=5d001cce9730e96c28e7b94893ce0a0ed109b53604f1f8d52d14f423e717b67f", + "version_timestamp": "2025-06-24T15:37:21Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": 42, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-28T19:10:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-09T17:51:15Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-08", + "formatted_number": "21 10 00-3", + "issue_date": "2025-03-28", + "last_distributed_submittal": { + "id": 27950191, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39287613, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5545421132, + "content_type": "application/pdf", + "filename": "21 10 00-3.0 - Hydraulic Calculations_H2MG.pdf", + "source_prostore_file_id": 5545421132, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZR1FEV7J0YEHHM1CYPGNVZP?companyId=8089&projectId=2563870&sig=b1bf6c373f46448dbd0d660785a2bde38005b6eaebd235344902f43df677c1c0", + "viewable_document_id": 856998206 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 153613721, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 8596985, + "initials": "CO", + "name": "Chris Orr", + "vendor_name": "Firetron, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-09T17:51:15Z" + }, + "lead_time": 48, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydraulic Calculations ", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-08-13T19:55:56Z" + }, + { + "id": 62131936, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153613736, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613734, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613733, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613732, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613731, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613730, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-03-28T19:11:04Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-16", + "formatted_number": "21 10 00-4", + "issue_date": "2025-03-28", + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-25", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Alarm Wire and Devices (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-13T16:36:00Z" + }, + { + "id": 62191637, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152665529, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139806440, + "additional_page_count": 0, + "attached_at": "2025-05-23T15:47:23Z", + "attachment_id": 5447615256, + "content_type": "application/pdf", + "document_markup_layer_id": 63679770, + "filename": "05 51 13-2.1 - Exterior Metal Pan Stairs-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-23T15:47:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVYX5DA0TNT0PKDVF8WG8Q9Q?companyId=8089&projectId=2563870&sig=e4f660f397c67be3e3f4aea48b8e851ea361740df29c2c19f2d518229fde8480", + "version_timestamp": "2025-05-23T15:47:23Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-05-27", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-23", + "sent_date": "2025-05-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 152665528, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139193288, + "additional_page_count": 0, + "attached_at": "2025-05-13T14:14:50Z", + "attachment_id": 5423316696, + "content_type": "application/pdf", + "document_markup_layer_id": 63192533, + "filename": "05 53 13 2.1 - Exterior Metal Pan Stair (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-13T14:14:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV4ZYBHZPCQ0TNMYYJHEGJGD?companyId=8089&projectId=2563870&sig=5728dccbc9f1a2e8597118a39f11b644cf351b5695e92069d25dc755b537c818", + "version_timestamp": "2025-05-13T14:14:50Z" + } + ], + "comment": "Exterior stairs only submitted for approval.", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": "2025-05-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 152665527, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152665526, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138814673, + "additional_page_count": 0, + "attached_at": "2025-05-06T13:46:58Z", + "attachment_id": 5408556473, + "content_type": "application/pdf", + "document_markup_layer_id": 63192131, + "filename": "05 53 13 2.1 - Metal Pan Stair (SD).pdf", + "markup_updated_at": "2025-05-13T14:12:36Z", + "state": "excluded", + "updated_at": "2025-05-06T13:46:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTJXJEQWZ4H7QSDPQPXXK44C?companyId=8089&projectId=2563870&sig=02415b37fe148f7a8b6abff11358b974a98a3e08d0d3aa6b0b06ab945c41c5ed", + "version_timestamp": "2025-05-06T13:46:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-04-28", + "user": { + "id": 11773778, + "name": "Aaron Glover" + }, + "variance": 20, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-01T16:15:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-23T16:43:07Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 12187300, + "name": "Carlos Molina" + } + ], + "drawing_ids": [], + "due_date": "2025-05-27", + "formatted_number": "055113-2", + "issue_date": "2025-04-01", + "last_distributed_submittal": { + "id": 27357606, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38405496, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5447615256, + "content_type": "application/pdf", + "filename": "05 51 13-2.1 - Exterior Metal Pan Stairs-SD_STR_FGMA.pdf", + "source_prostore_file_id": 5447615256, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVYX5DA0TNT0PKDVF8WG8Q9Q?companyId=8089&projectId=2563870&sig=e4f660f397c67be3e3f4aea48b8e851ea361740df29c2c19f2d518229fde8480", + "viewable_document_id": 840008481 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 152665529, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please fabricate based on comments.
", + "sent_at": "2025-05-23T16:43:07Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-07-18", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-08", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Metal Pan Stairs (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-23T16:43:07Z" + }, + { + "id": 62213782, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475979, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475978, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475977, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475975, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T12:47:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "8", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": null, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Custodial Key Boxes (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:00Z" + }, + { + "id": 62223142, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476044, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476043, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476042, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476041, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476040, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:43:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-6", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-30", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-03-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Exterior HM Doors and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:03Z" + }, + { + "id": 62223202, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476028, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476027, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476026, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476025, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476024, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:43:42Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-7", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-30", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-03-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Interior HM Doors and Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:02Z" + }, + { + "id": 62223227, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475949, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475948, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475947, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475946, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475945, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:44:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-8", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-12", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-16", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Exterior HM Doors and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:14:59Z" + }, + { + "id": 62223243, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476034, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476032, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476031, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476030, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476029, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:44:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-9", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-12", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-16", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Exterior HM Doors and Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:02Z" + }, + { + "id": 62223388, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476011, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476010, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476009, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476008, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476007, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:45:26Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-7", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-13", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-31", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Flush Wood Doors (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:02Z" + }, + { + "id": 62223435, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475954, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475953, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475952, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475951, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475950, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:46:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-8", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-02", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Flush Wood Doors (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:14:59Z" + }, + { + "id": 62223532, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476006, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476005, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476004, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476003, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476002, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:46:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081416-9", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 84, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2026-02-13", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037687, + "current_revision_id": 45441099, + "description": "FLUSH WOOD DOORS", + "label": "081416 - FLUSH WOOD DOORS", + "number": "081416", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331217 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-10-31", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Flush Wood Doors (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:01Z" + }, + { + "id": 62223582, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476001, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476000, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475999, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475998, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475997, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:47:16Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100b-3", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-23", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096761, + "current_revision_id": 45441107, + "description": "DOOR HARDWARE SETS", + "label": "087100b - DOOR HARDWARE SETS", + "number": "087100b", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331242 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Door Hardware (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:01Z" + }, + { + "id": 62223672, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476039, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476038, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476037, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476036, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476035, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:47:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100b-1", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-07-23", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096761, + "current_revision_id": 45441107, + "description": "DOOR HARDWARE SETS", + "label": "087100b - DOOR HARDWARE SETS", + "number": "087100b", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331242 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-07", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Door Hardware (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-24T13:11:55Z" + }, + { + "id": 62224343, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476049, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476048, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476047, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476046, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476045, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:52:40Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-10", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "10", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-12", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-16", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Interior HM Doors and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:03Z" + }, + { + "id": 62224372, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475964, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475963, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475962, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475961, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475960, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T15:53:14Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-11", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "11", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-12", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-16", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Interior HM Doors and Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:14:59Z" + }, + { + "id": 62233105, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476075, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476074, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476073, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476072, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476071, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:55:05Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-12", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "12", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-01-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C: Exterior HM Doors and Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:04Z" + }, + { + "id": 62233128, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475969, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475968, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475967, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475966, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475965, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:55:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-13", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "13", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-05-27", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-01-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C: Interior HM Doors and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:00Z" + }, + { + "id": 62233220, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476060, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476058, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476057, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476056, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476055, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:57:23Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-14", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "14", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-30", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-03-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Interior HM Doors and Frames (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:04Z" + }, + { + "id": 62233244, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476068, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476067, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476065, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476064, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:58:06Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "081113-15", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "15", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-06-30", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-03-03", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Exterior HM Doors and Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:04Z" + }, + { + "id": 62233310, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155476081, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476079, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155476078, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476077, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155476076, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:59:37Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100b-4", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-15", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096761, + "current_revision_id": 45441107, + "description": "DOOR HARDWARE SETS", + "label": "087100b - DOOR HARDWARE SETS", + "number": "087100b", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331242 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Door Hardware (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-05T13:15:04Z" + }, + { + "id": 62233318, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155475996, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475995, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155475994, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475993, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155475992, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-02T18:59:57Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "087100b-5", + "issue_date": "2025-04-02", + "last_distributed_submittal": null, + "lead_time": 56, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": "2025-09-15", + "responsible_contractor": { + "id": 19167546, + "name": "LaForce, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096761, + "current_revision_id": 45441107, + "description": "DOOR HARDWARE SETS", + "label": "087100b - DOOR HARDWARE SETS", + "number": "087100b", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331242 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-06-30", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B: Door Hardware (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-05T13:15:01Z" + }, + { + "id": 62248810, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153613748, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613747, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613746, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153613745, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613744, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153613743, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-03T12:39:12Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-16", + "formatted_number": "21 10 00-5", + "issue_date": "2025-04-03", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Alarm Plan (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-13T20:21:25Z" + }, + { + "id": 62248828, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152867823, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138028902, + "additional_page_count": 0, + "attached_at": "2025-04-21T16:29:13Z", + "attachment_id": 5377343643, + "content_type": "application/pdf", + "document_markup_layer_id": 62255479, + "filename": "21 10 00-6.0 - Area A Fire Alarm Plan - SD_fgma_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-21T16:29:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCJWH122GH3XR50YP277VB9?companyId=8089&projectId=2563870&sig=88dcffa763135feb983cb99932d347806a88e1d67cd64bb4219fcf7d4d10fc9d", + "version_timestamp": "2025-04-21T16:29:13Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-04-21", + "sent_date": "2025-04-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 152867822, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152867821, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152867819, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137139634, + "additional_page_count": 1, + "attached_at": "2025-04-03T12:52:16Z", + "attachment_id": 5341947292, + "content_type": "application/pdf", + "document_markup_layer_id": 61534816, + "filename": "21 10 00 6.0 - Area A_Fire Alarm Plan (SD).pdf", + "markup_updated_at": "2025-04-03T12:56:37Z", + "state": "excluded", + "updated_at": "2025-04-03T12:56:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQXV9A677081DJBWWWPY5YPX?companyId=8089&projectId=2563870&sig=037732873de53b4e1f0cedc1c7286bd0a0fbb2c0ad59df676185567f6de3767a", + "version_timestamp": "2025-04-03T12:56:37Z" + } + ], + "comment": "Submitted for architectural review.", + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-04-03", + "sent_date": "2025-04-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152867820, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152867818, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137139369, + "additional_page_count": 1, + "attached_at": "2025-04-03T12:52:16Z", + "attachment_id": 5341947292, + "content_type": "application/pdf", + "document_markup_layer_id": 61534816, + "filename": "21 10 00 6.0 - Area A_Fire Alarm Plan (SD).pdf", + "markup_updated_at": "2025-04-03T12:56:37Z", + "state": "outdated", + "updated_at": "2025-04-03T12:52:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQXV9A677081DJBWWWPY5YPX?companyId=8089&projectId=2563870&sig=037732873de53b4e1f0cedc1c7286bd0a0fbb2c0ad59df676185567f6de3767a", + "version_timestamp": "2025-04-03T12:52:16Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-03", + "sent_date": "2025-04-01", + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-03T12:39:41Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-22T14:05:27Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-17", + "formatted_number": "21 10 00-6", + "issue_date": "2025-04-03", + "last_distributed_submittal": { + "id": 26922003, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37757774, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5377343643, + "content_type": "application/pdf", + "filename": "21 10 00-6.0 - Area A Fire Alarm Plan - SD_fgma_H2MG.pdf", + "source_prostore_file_id": 5377343643, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCJWH122GH3XR50YP277VB9?companyId=8089&projectId=2563870&sig=88dcffa763135feb983cb99932d347806a88e1d67cd64bb4219fcf7d4d10fc9d", + "viewable_document_id": 827852061 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 152867823, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 8596985, + "initials": "CO", + "name": "Chris Orr", + "vendor_name": "Firetron, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-22T14:05:27Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": "2025-08-01", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A: Fire Sprinkler Plan (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-13T16:39:09Z" + }, + { + "id": 62257732, + "actual_delivery_date": null, + "approvers": [ + { + "id": 152898167, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138040333, + "additional_page_count": 0, + "attached_at": "2025-04-21T18:23:13Z", + "attachment_id": 5377751169, + "content_type": "application/pdf", + "document_markup_layer_id": 62259420, + "filename": "22 13 19.13-1.1 \u2013 Grease Interceptor R1_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-21T18:23:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCSDH4B4KQ700YBT79K8R6C?companyId=8089&projectId=2563870&sig=8e55f13251409561ce851c9305e6faab62ad188d06cc10671c2e414245a8f9fa", + "version_timestamp": "2025-04-21T18:23:13Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-04-14", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-04-21", + "sent_date": "2025-04-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 5, + "workflow_group_number": 3 + }, + { + "id": 152898168, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-07", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152898169, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 152898162, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137342460, + "additional_page_count": 0, + "attached_at": "2025-04-07T21:28:05Z", + "attachment_id": 5350129395, + "content_type": "application/pdf", + "document_markup_layer_id": 61702106, + "filename": "221319.13-01-01 - ACR Sbtl Review - Grease Interceptor.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-07T21:28:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JR92E4C7RBWS4A09SZ1FYFG0?companyId=8089&projectId=2563870&sig=22c19a0b83a1db824f430224ca5315b8e4a0b037bb42346ad8dcd82ab7ec830c", + "version_timestamp": "2025-04-07T21:28:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-07", + "sent_date": "2025-04-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 152898166, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152898165, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152898164, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 152898160, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137157353, + "additional_page_count": 0, + "attached_at": "2025-04-03T15:49:49Z", + "attachment_id": 5342653274, + "content_type": "application/pdf", + "document_markup_layer_id": 61550797, + "filename": "2108 Lemon IW.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-03T15:49:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQY5FSCYH6SCR97B5BNGHQRK?companyId=8089&projectId=2563870&sig=6693ddd2f92f2e2c9b605dfd0b44938cc99bc2300f67b6fd444a254935e7eca7", + "version_timestamp": "2025-04-03T15:49:49Z" + }, + { + "id": 137157118, + "additional_page_count": 1, + "attached_at": "2025-04-03T15:46:20Z", + "attachment_id": 5342638979, + "content_type": "application/pdf", + "document_markup_layer_id": 61550556, + "filename": "22 13 19.13 1.1 - Grease Interceptor (PD).pdf", + "markup_updated_at": "2025-04-03T15:47:49Z", + "state": "excluded", + "updated_at": "2025-04-03T15:47:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQY59PDR0E1Y05M9Y11CAA9C?companyId=8089&projectId=2563870&sig=3df844b70f3c7cd68b7b5ad275bbcb060d27f29947feb742522d8e0a9a7a9a76", + "version_timestamp": "2025-04-03T15:47:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-03", + "sent_date": "2025-04-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 152898161, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 152898159, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137156969, + "additional_page_count": 1, + "attached_at": "2025-04-03T15:46:20Z", + "attachment_id": 5342638979, + "content_type": "application/pdf", + "document_markup_layer_id": 61550556, + "filename": "22 13 19.13 1.1 - Grease Interceptor (PD).pdf", + "markup_updated_at": "2025-04-03T15:47:49Z", + "state": "outdated", + "updated_at": "2025-04-03T15:46:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JQY59PDR0E1Y05M9Y11CAA9C?companyId=8089&projectId=2563870&sig=3df844b70f3c7cd68b7b5ad275bbcb060d27f29947feb742522d8e0a9a7a9a76", + "version_timestamp": "2025-04-03T15:46:20Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-03", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 152898158, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 152898157, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-04-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-03T15:43:15Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-22T13:59:53Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 6914369, + "name": "David Phelps" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-14", + "formatted_number": "22 13 19.13-1", + "issue_date": "2025-04-03", + "last_distributed_submittal": { + "id": 26921775, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37757477, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5377751169, + "content_type": "application/pdf", + "filename": "22 13 19.13-1.1 \u2013 Grease Interceptor R1_ACR_H2MG.pdf", + "source_prostore_file_id": 5377751169, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCSDH4B4KQ700YBT79K8R6C?companyId=8089&projectId=2563870&sig=8e55f13251409561ce851c9305e6faab62ad188d06cc10671c2e414245a8f9fa", + "viewable_document_id": 827923854 + } + ], + "response_name": "Approved", + "submittal_approver_id": 152898167, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-22T13:59:53Z" + }, + "lead_time": 42, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-07-23", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 37096791, + "current_revision_id": 45441173, + "description": "DRAINS, HYDRANTS, CLEANOUTS AND APPURTENANCES", + "label": "22 13 19.13 - DRAINS, HYDRANTS, CLEANOUTS AND APPURTENANCES", + "number": "22 13 19.13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331423 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-21", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Grease Interceptor R1", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-22T13:59:53Z" + }, + { + "id": 62358242, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153233708, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138029646, + "additional_page_count": 0, + "attached_at": "2025-04-21T16:36:59Z", + "attachment_id": 5377369009, + "content_type": "application/pdf", + "document_markup_layer_id": 62254132, + "filename": "23 52 16-1.1 - Condensing Boilers-PD_H2MG Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-21T16:36:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCKAQN0G3YEW0DR1W062386?companyId=8089&projectId=2563870&sig=27ff22869c299bbf70870d791bf79ac7734e404b59736f8b84acc706df76c172", + "version_timestamp": "2025-04-21T16:36:59Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-04-21", + "sent_date": "2025-04-15", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 153233706, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153233707, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-15", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 153233702, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137756662, + "additional_page_count": 0, + "attached_at": "2025-04-15T15:13:27Z", + "attachment_id": 5366465030, + "content_type": "application/pdf", + "document_markup_layer_id": 62040888, + "filename": "235216-01-01 - ACR Sbtl Review - Condensing Boilers.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-15T15:13:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRX05JPBEXTHXN72N4AKM84K?companyId=8089&projectId=2563870&sig=c0b6372d126a99054f0d28b6dcb247b739c1ef0b7db8a029906775936a87516a", + "version_timestamp": "2025-04-15T15:13:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-15", + "sent_date": "2025-04-08", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 153233705, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153233704, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153233703, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153233699, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137368746, + "additional_page_count": 1, + "attached_at": "2025-04-08T13:43:42Z", + "attachment_id": 5351259247, + "content_type": "application/pdf", + "document_markup_layer_id": 61724237, + "filename": "23 52 16 - 1.1 - Condensing Boilers Rev 1.pdf", + "markup_updated_at": "2025-04-08T14:00:50Z", + "state": "excluded", + "updated_at": "2025-04-08T14:00:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAT8QYGWHT9YRNVAJ2BEZ2Z?companyId=8089&projectId=2563870&sig=b0f33db7ba91188de951f0a216113c16858e74d604e42ad1a5ee22d95562ce09", + "version_timestamp": "2025-04-08T14:00:50Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": "2025-04-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153233700, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153233701, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-08", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153233696, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137367947, + "additional_page_count": 1, + "attached_at": "2025-04-08T13:43:42Z", + "attachment_id": 5351259247, + "content_type": "application/pdf", + "document_markup_layer_id": 61724237, + "filename": "23 52 16 - 1.1 - Condensing Boilers Rev 1.pdf", + "markup_updated_at": "2025-04-08T14:00:50Z", + "state": "outdated", + "updated_at": "2025-04-08T13:43:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JRAT8QYGWHT9YRNVAJ2BEZ2Z?companyId=8089&projectId=2563870&sig=b0f33db7ba91188de951f0a216113c16858e74d604e42ad1a5ee22d95562ce09", + "version_timestamp": "2025-04-08T13:43:42Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-08", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 153233698, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153233697, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 153233695, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-08T13:43:24Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-04-22T14:22:07Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-04-22", + "formatted_number": "23 52 16-1", + "issue_date": "2025-04-08", + "last_distributed_submittal": { + "id": 26922648, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37758670, + "comment": "See attached pdf for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5377369009, + "content_type": "application/pdf", + "filename": "23 52 16-1.1 - Condensing Boilers-PD_H2MG Review.pdf", + "source_prostore_file_id": 5377369009, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSCKAQN0G3YEW0DR1W062386?companyId=8089&projectId=2563870&sig=27ff22869c299bbf70870d791bf79ac7734e404b59736f8b84acc706df76c172", + "viewable_document_id": 827858363 + } + ], + "response_name": "Approved", + "submittal_approver_id": 153233708, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-04-22T14:22:07Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36039541, + "current_revision_id": 45441245, + "description": "Condensing Boilers", + "label": "23 52 16 - Condensing Boilers", + "number": "23 52 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331512 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Condensing Boilers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-04-22T14:22:07Z" + }, + { + "id": 62540204, + "actual_delivery_date": null, + "approvers": [ + { + "id": 153860447, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 153860446, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139273089, + "additional_page_count": 1, + "attached_at": "2025-05-14T14:17:28Z", + "attachment_id": 5426341084, + "content_type": "application/pdf", + "document_markup_layer_id": 63258805, + "filename": "33 40 00 3.1 - ROW SD Manholes (SD).pdf", + "markup_updated_at": "2025-05-14T14:22:41Z", + "state": "current", + "updated_at": "2025-05-14T14:22:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7JGA1RQH0T7QN2XY990CV4?companyId=8089&projectId=2563870&sig=76885577a87589cd2f9cc14dbdb4bb4bdeb6eb1fe95d0667d4549296fb9d7378", + "version_timestamp": "2025-05-14T14:22:41Z" + } + ], + "comment": "Please review and provide city revision timeline as applicable.", + "days_to_respond": 5, + "due_date": "2025-05-21", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 153860445, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 153860444, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139272451, + "additional_page_count": 1, + "attached_at": "2025-05-14T14:17:28Z", + "attachment_id": 5426341084, + "content_type": "application/pdf", + "document_markup_layer_id": 63258805, + "filename": "33 40 00 3.1 - ROW SD Manholes (SD).pdf", + "markup_updated_at": "2025-05-14T14:22:41Z", + "state": "outdated", + "updated_at": "2025-05-14T14:17:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7JGA1RQH0T7QN2XY990CV4?companyId=8089&projectId=2563870&sig=76885577a87589cd2f9cc14dbdb4bb4bdeb6eb1fe95d0667d4549296fb9d7378", + "version_timestamp": "2025-05-14T14:17:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-04-29", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 11, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-04-15T14:44:15Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 12187300, + "name": "Carlos Molina" + } + ], + "drawing_ids": [], + "due_date": "2025-05-28", + "formatted_number": "33 40 00-3", + "issue_date": "2025-04-15", + "last_distributed_submittal": null, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36787994, + "current_revision_id": 45045167, + "description": "Storm Water Piping", + "label": "33 40 00 - Storm Water Piping", + "number": "33 40 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-02-16", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "ROW SD Manhole (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-05-20T21:29:34Z" + }, + { + "id": 62635661, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154224977, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137970900, + "additional_page_count": 0, + "attached_at": "2025-04-18T16:19:14Z", + "attachment_id": 5374887270, + "content_type": "application/pdf", + "document_markup_layer_id": 62263707, + "filename": "05 12 00 4.1 - Anchor Bolt IFC Set.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-18T16:19:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS4V4K60XFKZTP4034CR6Y7R?companyId=8089&projectId=2563870&sig=7dbdf98869b0d29a96a250e1c166e8bd06f066c5cdc29e5d611bc131b2ec018f", + "version_timestamp": "2025-04-18T16:19:14Z" + } + ], + "comment": "", + "days_to_respond": 14, + "due_date": "2025-05-08", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-18", + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -14, + "workflow_group_number": 0 + }, + { + "id": 154224976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 14, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-18T16:17:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-04-18T16:19:57Z", + "distribution_members": [ + { + "id": 11773778, + "name": "Aaron Glover" + }, + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [ + 137609003 + ], + "due_date": "2025-05-08", + "formatted_number": "051200-4", + "issue_date": "2025-04-18", + "last_distributed_submittal": { + "id": 26890057, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 37710341, + "comment": "", + "distributed_attachments": [ + { + "id": 5374887270, + "content_type": "application/pdf", + "filename": "05 12 00 4.1 - Anchor Bolt IFC Set.pdf", + "source_prostore_file_id": 5374887270, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS4V4K60XFKZTP4034CR6Y7R?companyId=8089&projectId=2563870&sig=7dbdf98869b0d29a96a250e1c166e8bd06f066c5cdc29e5d611bc131b2ec018f", + "viewable_document_id": 827468822 + } + ], + "response_name": "For Record Only", + "submittal_approver_id": 154224977, + "submittal_response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "submittal_response_id": 23348894, + "user": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "user_id": 9775551 + } + ], + "distributed_to": [ + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-04-18T16:19:57Z" + }, + "lead_time": 2, + "linked_drawing_ids": [ + 328956769 + ], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-04-04", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 2, + "name": "Closed", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Structural Steel : Anchor Bolt IFC Set (SD)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-04-18T16:19:57Z" + }, + { + "id": 62647491, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154269416, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138546049, + "additional_page_count": 0, + "attached_at": "2025-04-30T16:53:00Z", + "attachment_id": 5397650432, + "content_type": "application/pdf", + "document_markup_layer_id": 62675933, + "filename": "23 74 13-1.0 - Split DX System-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-04-30T16:53:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3STA5B9HXXVVY9VKYTA8HC?companyId=8089&projectId=2563870&sig=102f8fcced0ae01c37b09f4fcb663350609fbda7d641a9c9bc2d73976a8b7312", + "version_timestamp": "2025-04-30T16:53:00Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-04-30", + "sent_date": "2025-04-25", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 154269417, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154269418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154269411, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138305429, + "additional_page_count": 0, + "attached_at": "2025-04-25T14:35:47Z", + "attachment_id": 5388148558, + "content_type": "application/pdf", + "document_markup_layer_id": 62476736, + "filename": "237413-01-00 - ACR Sbtl Review - Split System Air Conditioners .pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-25T14:35:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSPP08ERPSBA0S8M26EENBJZ?companyId=8089&projectId=2563870&sig=35a807850453d9253287844fccda3e4c5cb9bccbcaf9b50fbe327a26c8b5237b", + "version_timestamp": "2025-04-25T14:35:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": "2025-04-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 154269415, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154269414, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154269413, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154269412, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154269409, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 137996640, + "additional_page_count": 0, + "attached_at": "2025-04-19T18:34:12Z", + "attachment_id": 5376015607, + "content_type": "application/pdf", + "document_markup_layer_id": 62230061, + "filename": "23 7413 - AAON Split DX Systems Submittal_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-04-19T18:34:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS7N87KMABT8DRV4DMDQ2FGA?companyId=8089&projectId=2563870&sig=c10244392d9a631480d3866bc05fb70603434266b36cc4691150b279c894fb31", + "version_timestamp": "2025-04-19T18:34:12Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-19", + "sent_date": "2025-04-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154269408, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154269410, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154269405, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 137996381, + "additional_page_count": 1, + "attached_at": "2025-04-19T16:35:09Z", + "attachment_id": 5375984871, + "content_type": "application/pdf", + "document_markup_layer_id": 62218714, + "filename": "23 74 13 - AAON Split DX Systems Submittal.pdf", + "markup_updated_at": "2025-04-19T18:31:07Z", + "state": "excluded", + "updated_at": "2025-04-19T16:35:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JS7EEGD9NJHWPPN8VEDR4WGW?companyId=8089&projectId=2563870&sig=90e84226ba4c1bcc2d75517d0d623bcfa6e91a06e1ac0619aefc2bcd1755e5de", + "version_timestamp": "2025-04-19T16:35:09Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-19", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154269407, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154269406, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154269404, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-04-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-19T16:34:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-06T13:06:32Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-02", + "formatted_number": "23 74 13-1", + "issue_date": "2025-04-19", + "last_distributed_submittal": { + "id": 27108209, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38035250, + "comment": null, + "distributed_attachments": [ + { + "id": 5397650432, + "content_type": "application/pdf", + "filename": "23 74 13-1.0 - Split DX System-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5397650432, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT3STA5B9HXXVVY9VKYTA8HC?companyId=8089&projectId=2563870&sig=102f8fcced0ae01c37b09f4fcb663350609fbda7d641a9c9bc2d73976a8b7312", + "viewable_document_id": 831378915 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 154269416, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "Submittal will need for record submission.
", + "sent_at": "2025-05-06T13:06:32Z" + }, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2025-09-01", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096850, + "current_revision_id": 45441255, + "description": "SPLIT DX SYSTEMS", + "label": "23 74 13 - SPLIT DX SYSTEMS", + "number": "23 74 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331523 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Split DX System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-09T15:16:03Z" + }, + { + "id": 62768962, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154681036, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138745469, + "additional_page_count": 0, + "attached_at": "2025-05-05T15:13:06Z", + "attachment_id": 5405965032, + "content_type": "application/pdf", + "document_markup_layer_id": 62833471, + "filename": "23 13 13.01-1.0 \u2013 Expansion Tanks and Air Separators_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-05T15:13:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGG39GSBDPSXHTWGXVQKMRX?companyId=8089&projectId=2563870&sig=ae40814ca3de38f28bb60a111f25b57406d3ca4604293e69a8e13247bb5cdabc", + "version_timestamp": "2025-05-05T15:13:06Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 154681037, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154681038, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154681031, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138636292, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:16:18Z", + "attachment_id": 5401175590, + "content_type": "application/pdf", + "document_markup_layer_id": 62746765, + "filename": "231313.01-01-00 - ACR Sbtl Review - Expansion Tanks & Air Separators.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:16:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6QVZVNCB4DA3FBCGBWG7S5?companyId=8089&projectId=2563870&sig=d6689f1208e36131b4587fd245b260231bd6b5ea61bb69139be952274ca78f0e", + "version_timestamp": "2025-05-01T20:16:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-24", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154681035, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154681034, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154681033, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154681032, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154681028, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138247724, + "additional_page_count": 1, + "attached_at": "2025-04-24T15:51:51Z", + "attachment_id": 5385899087, + "content_type": "application/pdf", + "document_markup_layer_id": 62430580, + "filename": "23 13 13.01 - 1.0 - Expansion Tanks & Air Separators Submittal.pdf", + "markup_updated_at": "2025-04-24T15:53:18Z", + "state": "excluded", + "updated_at": "2025-04-24T15:53:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM7YSA2B7HWWK5QFAVXWYJ6?companyId=8089&projectId=2563870&sig=a69b03cabf1c7ae5cdab3571e39d9730ce5e126f3ee623da9cc9211c525955e5", + "version_timestamp": "2025-04-24T15:53:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": "2025-04-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154681029, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154681030, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154681025, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138247596, + "additional_page_count": 1, + "attached_at": "2025-04-24T15:51:51Z", + "attachment_id": 5385899087, + "content_type": "application/pdf", + "document_markup_layer_id": 62430580, + "filename": "23 13 13.01 - 1.0 - Expansion Tanks & Air Separators Submittal.pdf", + "markup_updated_at": "2025-04-24T15:53:18Z", + "state": "outdated", + "updated_at": "2025-04-24T15:51:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM7YSA2B7HWWK5QFAVXWYJ6?companyId=8089&projectId=2563870&sig=a69b03cabf1c7ae5cdab3571e39d9730ce5e126f3ee623da9cc9211c525955e5", + "version_timestamp": "2025-04-24T15:51:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154681027, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154681026, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154681024, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-24T15:50:57Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-06T13:52:13Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 13 13.01-1", + "issue_date": "2025-04-24", + "last_distributed_submittal": { + "id": 27109701, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38037384, + "comment": null, + "distributed_attachments": [ + { + "id": 5405965032, + "content_type": "application/pdf", + "filename": "23 13 13.01-1.0 \u2013 Expansion Tanks and Air Separators_ACR_H2MG.pdf", + "source_prostore_file_id": 5405965032, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGG39GSBDPSXHTWGXVQKMRX?companyId=8089&projectId=2563870&sig=ae40814ca3de38f28bb60a111f25b57406d3ca4604293e69a8e13247bb5cdabc", + "viewable_document_id": 832760709 + } + ], + "response_name": "Approved", + "submittal_approver_id": 154681036, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T13:52:13Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37997280, + "current_revision_id": 46604157, + "description": "Steel Tanks", + "label": "23 13 13.01 - Steel Tanks", + "number": "23 13 13.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Expansion Tanks and Air Separators ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T13:52:13Z" + }, + { + "id": 62769774, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154683754, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138820483, + "additional_page_count": 0, + "attached_at": "2025-05-06T14:38:06Z", + "attachment_id": 5408764251, + "content_type": "application/pdf", + "document_markup_layer_id": 62893600, + "filename": "23 34 00-3.0 \u2013 Intake & Relief Hoods-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-06T14:38:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTK0FYYNSGJ5ARJZ24WPMG3W?companyId=8089&projectId=2563870&sig=509fb2f9c858d513d1208a18ad1559f638c84dfb0fa36e823caef7fea57df5dd", + "version_timestamp": "2025-05-06T14:38:06Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 154683755, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154683756, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154683749, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138638780, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:42:33Z", + "attachment_id": 5401259559, + "content_type": "application/pdf", + "document_markup_layer_id": 62748530, + "filename": "233400-03-00 - ACR Sbtl Review - Intake & Relief Hoods.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:42:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6SBVARG8NFB9PAWZX2F8YC?companyId=8089&projectId=2563870&sig=64cbee2577a820cda375355271b23b3085f117dd491d24a4fe395de2c8ed1222", + "version_timestamp": "2025-05-01T20:42:33Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-24", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 154683753, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154683752, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154683751, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154683750, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154683746, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138250432, + "additional_page_count": 1, + "attached_at": "2025-04-24T16:17:35Z", + "attachment_id": 5386000146, + "content_type": "application/pdf", + "document_markup_layer_id": 62432657, + "filename": "23 34 00 -3.0 - Intake & Relief Hoods.pdf", + "markup_updated_at": "2025-04-24T16:19:13Z", + "state": "excluded", + "updated_at": "2025-04-24T16:19:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM9DYJ0VPGX3TW754DP2HGJ?companyId=8089&projectId=2563870&sig=78fce4cfc4490a5e9a5dcb22b115ea241a65ea08faed928ff6b3c89f3250d5b7", + "version_timestamp": "2025-04-24T16:19:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": "2025-04-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154683747, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154683748, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-24", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154683743, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138250281, + "additional_page_count": 1, + "attached_at": "2025-04-24T16:17:35Z", + "attachment_id": 5386000146, + "content_type": "application/pdf", + "document_markup_layer_id": 62432657, + "filename": "23 34 00 -3.0 - Intake & Relief Hoods.pdf", + "markup_updated_at": "2025-04-24T16:19:13Z", + "state": "outdated", + "updated_at": "2025-04-24T16:17:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSM9DYJ0VPGX3TW754DP2HGJ?companyId=8089&projectId=2563870&sig=78fce4cfc4490a5e9a5dcb22b115ea241a65ea08faed928ff6b3c89f3250d5b7", + "version_timestamp": "2025-04-24T16:17:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-24", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154683745, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154683744, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154683742, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-24T16:06:22Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T20:20:02Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 34 00-3", + "issue_date": "2025-04-24", + "last_distributed_submittal": { + "id": 27121505, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38053824, + "comment": null, + "distributed_attachments": [ + { + "id": 5408764251, + "content_type": "application/pdf", + "filename": "23 34 00-3.0 \u2013 Intake & Relief Hoods-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5408764251, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTK0FYYNSGJ5ARJZ24WPMG3W?companyId=8089&projectId=2563870&sig=509fb2f9c858d513d1208a18ad1559f638c84dfb0fa36e823caef7fea57df5dd", + "viewable_document_id": 833242566 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 154683754, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T20:20:02Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037818, + "current_revision_id": 45441239, + "description": "Fans", + "label": "23 34 00 - Fans", + "number": "23 34 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331506 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Intake & Relief Hoods (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-03T20:53:24Z" + }, + { + "id": 62809284, + "actual_delivery_date": null, + "approvers": [ + { + "id": 154828859, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138749850, + "additional_page_count": 0, + "attached_at": "2025-05-05T15:48:01Z", + "attachment_id": 5406114569, + "content_type": "application/pdf", + "document_markup_layer_id": 62837251, + "filename": "23 30 00-2.1 \u2013 Air Duct Accessories_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-05T15:48:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGJ3E5J9NHYQSN2A6F8VASR?companyId=8089&projectId=2563870&sig=e1cff45a5e1df774b44d2c266951e6b47ce70d9aee9d41aec62a52601caadd1c", + "version_timestamp": "2025-05-05T15:48:01Z" + } + ], + "comment": "See attached pdf for submittal review comments.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 154828858, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 154828854, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138636679, + "additional_page_count": 0, + "attached_at": "2025-05-01T20:20:42Z", + "attachment_id": 5401188367, + "content_type": "application/pdf", + "document_markup_layer_id": 62747059, + "filename": "233000-02-01 - ACR Sbtl Review - Air Duct Accessories.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-01T20:20:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT6R3C6QPSECA5ERQ687JA2P?companyId=8089&projectId=2563870&sig=7962f22529c7dd276f6a470bdbbad60d6c16f8777aafa9f98b581d05dfa1c4da", + "version_timestamp": "2025-05-01T20:20:42Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-25", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 154828857, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154828856, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154828855, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 154828851, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138334983, + "additional_page_count": 1, + "attached_at": "2025-04-25T19:45:45Z", + "attachment_id": 5389257550, + "content_type": "application/pdf", + "document_markup_layer_id": 62498736, + "filename": "23 30 00 - 2.1 - Air Duct Accessories Resubmittal.pdf", + "markup_updated_at": "2025-04-25T19:47:58Z", + "state": "excluded", + "updated_at": "2025-04-25T19:47:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQ7QQX068BKFX3MMYCSZF47?companyId=8089&projectId=2563870&sig=ded520677be7918f4afe4076b73fdd75fd83a21b56c2cb81f32de2861570f4fe", + "version_timestamp": "2025-04-25T19:47:58Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": "2025-04-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 154828852, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154828853, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-25", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 154828848, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138334792, + "additional_page_count": 1, + "attached_at": "2025-04-25T19:45:45Z", + "attachment_id": 5389257550, + "content_type": "application/pdf", + "document_markup_layer_id": 62498736, + "filename": "23 30 00 - 2.1 - Air Duct Accessories Resubmittal.pdf", + "markup_updated_at": "2025-04-25T19:47:58Z", + "state": "outdated", + "updated_at": "2025-04-25T19:45:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JSQ7QQX068BKFX3MMYCSZF47?companyId=8089&projectId=2563870&sig=ded520677be7918f4afe4076b73fdd75fd83a21b56c2cb81f32de2861570f4fe", + "version_timestamp": "2025-04-25T19:45:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-25", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 154828850, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154828849, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 154828847, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-25T19:33:12Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-06T13:56:23Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "23 30 00-2", + "issue_date": "2025-04-25", + "last_distributed_submittal": { + "id": 27109829, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38037607, + "comment": null, + "distributed_attachments": [ + { + "id": 5406114569, + "content_type": "application/pdf", + "filename": "23 30 00-2.1 \u2013 Air Duct Accessories_ACR_H2MG.pdf", + "source_prostore_file_id": 5406114569, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGJ3E5J9NHYQSN2A6F8VASR?companyId=8089&projectId=2563870&sig=e1cff45a5e1df774b44d2c266951e6b47ce70d9aee9d41aec62a52601caadd1c", + "viewable_document_id": 832787320 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 154828859, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-06T13:56:23Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Duct Accessories (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-06T13:56:23Z" + }, + { + "id": 62836218, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160714459, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142191044, + "additional_page_count": 0, + "attached_at": "2025-07-11T01:44:21Z", + "attachment_id": 5549854746, + "content_type": "application/pdf", + "document_markup_layer_id": 65694412, + "filename": "05 50 00-1.1 - Metal Fabrications-Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T01:44:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVJEHZJJFHDM6WF2NZ9PS0K?companyId=8089&projectId=2563870&sig=f7765ac326ef398a5d4bcf60d50dd5aa96a579b055010f65db1db425cead471e", + "version_timestamp": "2025-07-11T01:44:21Z" + } + ], + "comment": "See attached response from Architect and Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 7, + "workflow_group_number": 2 + }, + { + "id": 159053675, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159053674, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159053672, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140975246, + "additional_page_count": 1, + "attached_at": "2025-06-17T12:49:59Z", + "attachment_id": 5496673951, + "content_type": "application/pdf", + "document_markup_layer_id": 64646058, + "filename": "05 50 00 -1.1 - Metal Fabrications Roof,Pit and Ship Ladders.pdf", + "markup_updated_at": "2025-06-17T12:52:10Z", + "state": "excluded", + "updated_at": "2025-06-17T12:52:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXYZ0MZ4RYWJCVBW3Y6CVYP8?companyId=8089&projectId=2563870&sig=c0b8e42a2f062cb798db57881820f161cf345c9fd80c900199dedb1e95cf9bee", + "version_timestamp": "2025-06-17T12:52:10Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159053673, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159053671, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140975054, + "additional_page_count": 1, + "attached_at": "2025-06-17T12:49:59Z", + "attachment_id": 5496673951, + "content_type": "application/pdf", + "document_markup_layer_id": 64646058, + "filename": "05 50 00 -1.1 - Metal Fabrications Roof,Pit and Ship Ladders.pdf", + "markup_updated_at": "2025-06-17T12:52:10Z", + "state": "outdated", + "updated_at": "2025-06-17T12:49:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXYZ0MZ4RYWJCVBW3Y6CVYP8?companyId=8089&projectId=2563870&sig=c0b8e42a2f062cb798db57881820f161cf345c9fd80c900199dedb1e95cf9bee", + "version_timestamp": "2025-06-17T12:49:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -9, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-28T16:37:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-12T17:54:44Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-01", + "formatted_number": "055000-1", + "issue_date": "2025-04-28", + "last_distributed_submittal": { + "id": 27990154, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39345550, + "comment": "See attached response from Architect and Engineer.
", + "distributed_attachments": [ + { + "id": 5549854746, + "content_type": "application/pdf", + "filename": "05 50 00-1.1 - Metal Fabrications-Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "source_prostore_file_id": 5549854746, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVJEHZJJFHDM6WF2NZ9PS0K?companyId=8089&projectId=2563870&sig=f7765ac326ef398a5d4bcf60d50dd5aa96a579b055010f65db1db425cead471e", + "viewable_document_id": 857754084 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 160714459, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Thornton,
\nPlease revise and resubmit. Refer to previous submission review comments for exterior roof ladders and revise shop drawing to reflect the design teams intent.
", + "sent_at": "2025-07-12T17:54:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-07-10", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037661, + "current_revision_id": 45441068, + "description": "METAL FABRICATIONS", + "label": "055000 - METAL FABRICATIONS", + "number": "055000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331054 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Fabrications: Roof, Pit and Ship Ladders (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-12T17:55:38Z" + }, + { + "id": 62865421, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155009069, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "See response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-05-01", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 155009071, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155009070, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-01", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155009068, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138593976, + "additional_page_count": 0, + "attached_at": "2025-05-01T13:34:03Z", + "attachment_id": 5399679318, + "content_type": "application/pdf", + "document_markup_layer_id": 62713863, + "filename": "26 22 13-3.1 - Low Volt Transformers - PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-01T13:34:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT60V3CB1JSG89ZPHXNPCEMC?companyId=8089&projectId=2563870&sig=9eeb9dca6051c3c0a3ad81a2228c0ae122e23d7faa5e360e373f8999b78d3c4e", + "version_timestamp": "2025-05-01T13:34:03Z" + } + ], + "comment": "See attached for submittal review comments.", + "days_to_respond": 10, + "due_date": "2025-05-13", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-01", + "sent_date": "2025-04-29", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 155009067, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155009066, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155009063, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138449299, + "additional_page_count": 1, + "attached_at": "2025-04-29T13:45:33Z", + "attachment_id": 5393963872, + "content_type": "application/pdf", + "document_markup_layer_id": 62596469, + "filename": "26 22 13 - 1.0 - LV Transformers R1.pdf", + "markup_updated_at": "2025-04-29T13:48:23Z", + "state": "excluded", + "updated_at": "2025-04-29T13:48:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT0WPXGEJ2Q4YEK84234N7WW?companyId=8089&projectId=2563870&sig=76a57072a23986e913ffea48165f6409224c4e197e2618de09e3e56b37959f35", + "version_timestamp": "2025-04-29T13:48:23Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-04-29", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-04-29", + "sent_date": "2025-04-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 155009064, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155009065, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-04-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155009060, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138449065, + "additional_page_count": 1, + "attached_at": "2025-04-29T13:45:33Z", + "attachment_id": 5393963872, + "content_type": "application/pdf", + "document_markup_layer_id": 62596469, + "filename": "26 22 13 - 1.0 - LV Transformers R1.pdf", + "markup_updated_at": "2025-04-29T13:48:23Z", + "state": "outdated", + "updated_at": "2025-04-29T13:45:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT0WPXGEJ2Q4YEK84234N7WW?companyId=8089&projectId=2563870&sig=76a57072a23986e913ffea48165f6409224c4e197e2618de09e3e56b37959f35", + "version_timestamp": "2025-04-29T13:45:33Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-04-29", + "sent_date": "2025-04-29", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155009061, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155009062, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-04-29", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-04-29T13:40:06Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-06T13:40:54Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-05-08", + "formatted_number": "262213-3", + "issue_date": "2025-04-29", + "last_distributed_submittal": { + "id": 27109284, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38036810, + "comment": "See response from Engineer.
", + "distributed_attachments": [], + "response_name": "Rejected", + "submittal_approver_id": 155009069, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + }, + { + "id": 38036809, + "comment": "See attached for submittal review comments.
", + "distributed_attachments": [ + { + "id": 5399679318, + "content_type": "application/pdf", + "filename": "26 22 13-3.1 - Low Volt Transformers - PD_H2MG.pdf", + "source_prostore_file_id": 5399679318, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT60V3CB1JSG89ZPHXNPCEMC?companyId=8089&projectId=2563870&sig=9eeb9dca6051c3c0a3ad81a2228c0ae122e23d7faa5e360e373f8999b78d3c4e", + "viewable_document_id": 831701602 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 155009068, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 10716012 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-06T13:40:54Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36586613, + "current_revision_id": 44794161, + "description": "High Efficiency Dry-type Distribution XFMR", + "label": "262213 - High Efficiency Dry-type Distribution XFMR", + "number": "262213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low volt Transformers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-03T21:59:46Z" + }, + { + "id": 62989783, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155410119, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139531047, + "additional_page_count": 0, + "attached_at": "2025-05-19T18:49:10Z", + "attachment_id": 5436423552, + "content_type": "application/pdf", + "document_markup_layer_id": 63457274, + "filename": "23 30 00-3.0 - Ductwork_FGMA_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T18:49:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMY10QZ731FQPZEBQVQ6Q8G?companyId=8089&projectId=2563870&sig=33693521a7a73270d9a0537d5a8e0d5518e5c9bd6004070dd281728df5eec363", + "version_timestamp": "2025-05-19T18:49:10Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 155410120, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155410121, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155410114, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "- No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-05-08", + "sent_date": "2025-05-02", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 155410118, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155410117, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155410116, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155410115, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155410111, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138688230, + "additional_page_count": 1, + "attached_at": "2025-05-02T17:45:54Z", + "attachment_id": 5403461829, + "content_type": "application/pdf", + "document_markup_layer_id": 62786725, + "filename": "23 3000 - Wall Louvers Submittal.pdf", + "markup_updated_at": "2025-05-02T17:47:41Z", + "state": "excluded", + "updated_at": "2025-05-02T17:47:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT91MPQ4FA2T3M8STNX1JZ3T?companyId=8089&projectId=2563870&sig=479871d6c242710daf1aa9a33b927a2968fc0a56f3cd45c2693be44f43b1bca9", + "version_timestamp": "2025-05-02T17:47:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": "2025-05-02", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155410112, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155410113, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-02", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155410109, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138688149, + "additional_page_count": 1, + "attached_at": "2025-05-02T17:45:54Z", + "attachment_id": 5403461829, + "content_type": "application/pdf", + "document_markup_layer_id": 62786725, + "filename": "23 3000 - Wall Louvers Submittal.pdf", + "markup_updated_at": "2025-05-02T17:47:41Z", + "state": "outdated", + "updated_at": "2025-05-02T17:45:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JT91MPQ4FA2T3M8STNX1JZ3T?companyId=8089&projectId=2563870&sig=479871d6c242710daf1aa9a33b927a2968fc0a56f3cd45c2693be44f43b1bca9", + "version_timestamp": "2025-05-02T17:45:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-02", + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155410110, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155410108, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155410107, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-02T17:44:14Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-23T13:34:28Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-15", + "formatted_number": "23 30 00-3", + "issue_date": "2025-05-02", + "last_distributed_submittal": { + "id": 27352752, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38398617, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5436423552, + "content_type": "application/pdf", + "filename": "23 30 00-3.0 - Ductwork_FGMA_H2MG.pdf", + "source_prostore_file_id": 5436423552, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMY10QZ731FQPZEBQVQ6Q8G?companyId=8089&projectId=2563870&sig=33693521a7a73270d9a0537d5a8e0d5518e5c9bd6004070dd281728df5eec363", + "viewable_document_id": 837986103 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 155410119, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "Please make noted revisions and resubmit.
", + "sent_at": "2025-05-23T13:34:28Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall Louvre (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-23T13:34:56Z" + }, + { + "id": 63012213, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155488430, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139289147, + "additional_page_count": 0, + "attached_at": "2025-05-14T16:57:03Z", + "attachment_id": 5426959777, + "content_type": "application/pdf", + "document_markup_layer_id": 63271263, + "filename": "22 33 00-1.0 - Electric Domestic Water Heaters_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-14T16:57:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7VKKKRX2T29MW9PJJJMDXF?companyId=8089&projectId=2563870&sig=40ef8268bf49971bd5948deb0d67ae66e1ed4f43f759bbf33b5072e50e360aa5", + "version_timestamp": "2025-05-14T16:57:03Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 155488431, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155488432, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155488420, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139149492, + "additional_page_count": 0, + "attached_at": "2025-05-12T19:49:09Z", + "attachment_id": 5421700872, + "content_type": "application/pdf", + "document_markup_layer_id": 63159134, + "filename": "223300-01-00 - ACR Sbtl Review - Electric - Domestic Water Heaters.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-12T19:49:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV30N8EKFC0SNTBZ049VHW8S?companyId=8089&projectId=2563870&sig=ec5bd80c77b06b6ad57238cfa4a2bb60367b1aced7dd20b8b0666a39c02dc70d", + "version_timestamp": "2025-05-12T19:49:09Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-05", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 155488429, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155488427, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155488425, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155488423, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155488416, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138740475, + "additional_page_count": 1, + "attached_at": "2025-05-05T14:27:10Z", + "attachment_id": 5405754513, + "content_type": "application/pdf", + "document_markup_layer_id": 62828762, + "filename": "22 33 00 - 1.0 - Electric Domestic Water Heaters.pdf", + "markup_updated_at": "2025-05-05T14:29:02Z", + "state": "excluded", + "updated_at": "2025-05-05T14:29:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGDFP3EM17Y12XRF8TF6THD?companyId=8089&projectId=2563870&sig=e7737bcefb0ddca21332571107801a55a200c36e65bd889a5e1723cd1c613c19", + "version_timestamp": "2025-05-05T14:29:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": "2025-05-05", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155488418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155488414, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138740250, + "additional_page_count": 1, + "attached_at": "2025-05-05T14:27:10Z", + "attachment_id": 5405754513, + "content_type": "application/pdf", + "document_markup_layer_id": 62828762, + "filename": "22 33 00 - 1.0 - Electric Domestic Water Heaters.pdf", + "markup_updated_at": "2025-05-05T14:29:02Z", + "state": "outdated", + "updated_at": "2025-05-05T14:27:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTGDFP3EM17Y12XRF8TF6THD?companyId=8089&projectId=2563870&sig=e7737bcefb0ddca21332571107801a55a200c36e65bd889a5e1723cd1c613c19", + "version_timestamp": "2025-05-05T14:27:10Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-05", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 155488413, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155488412, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-05T14:24:31Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-15T18:03:53Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-19", + "formatted_number": "22 33 00-1", + "issue_date": "2025-05-05", + "last_distributed_submittal": { + "id": 27248952, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38242170, + "comment": null, + "distributed_attachments": [ + { + "id": 5426959777, + "content_type": "application/pdf", + "filename": "22 33 00-1.0 - Electric Domestic Water Heaters_ACR_H2MG.pdf", + "source_prostore_file_id": 5426959777, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV7VKKKRX2T29MW9PJJJMDXF?companyId=8089&projectId=2563870&sig=40ef8268bf49971bd5948deb0d67ae66e1ed4f43f759bbf33b5072e50e360aa5", + "viewable_document_id": 836334283 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155488430, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-15T18:03:53Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096794, + "current_revision_id": 45441177, + "description": "ELECTRIC DOMESTIC WATER HEATERS (LESS THAN 10 KW)", + "label": "22 33 00 - ELECTRIC DOMESTIC WATER HEATERS (LESS THAN 10 KW)", + "number": "22 33 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331427 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electric Domestic Water Heaters", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-15T18:03:53Z" + }, + { + "id": 63023830, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155528249, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139537777, + "additional_page_count": 0, + "attached_at": "2025-05-19T19:53:56Z", + "attachment_id": 5436668251, + "content_type": "application/pdf", + "document_markup_layer_id": 63481673, + "filename": "22 21 23-1.1 - Mechanical Pumps-Electric Sump Pump-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-19T19:53:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVN1Q9564ZPG9BD5M6NEFK0S?companyId=8089&projectId=2563870&sig=f8afbf24f56c40baeccdd5286d87df166cadbbebbec38d701340ba39ac7f73d1", + "version_timestamp": "2025-05-19T19:53:56Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 155528250, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155528251, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155528244, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139432220, + "additional_page_count": 0, + "attached_at": "2025-05-16T15:53:38Z", + "attachment_id": 5432609932, + "content_type": "application/pdf", + "document_markup_layer_id": 63377499, + "filename": "222123-01-01 - ACR Sbtl Review - Sump Pump.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-16T15:53:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCWSK2HYHGJCD5A931BXRQW?companyId=8089&projectId=2563870&sig=a8c40dd9d6156e9d4715eb8b4dfbeb258e268bea89dea4a544ce18a4a6d5edee", + "version_timestamp": "2025-05-16T15:53:38Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-15", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 155528248, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155528247, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155528246, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155528245, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155528243, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139379726, + "additional_page_count": 1, + "attached_at": "2025-05-15T17:55:50Z", + "attachment_id": 5430189270, + "content_type": "application/pdf", + "document_markup_layer_id": 63337103, + "filename": "22 21 23 1.1 - Mechanical Pumps_Electrical Sump Pumps (PD).pdf", + "markup_updated_at": "2025-05-15T18:41:10Z", + "state": "excluded", + "updated_at": "2025-05-15T18:41:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVAHCW6X1J42JR7RFBQN0EMA?companyId=8089&projectId=2563870&sig=4213d6e2645e82460e12e47c0174a7e40205e94ca85c01452304803de32760e5", + "version_timestamp": "2025-05-15T18:41:10Z" + } + ], + "comment": "See revision with updated manufacturer.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": "2025-05-15", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155528242, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155528241, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139374936, + "additional_page_count": 1, + "attached_at": "2025-05-15T17:55:50Z", + "attachment_id": 5430189270, + "content_type": "application/pdf", + "document_markup_layer_id": 63337103, + "filename": "22 21 23 1.1 - Mechanical Pumps_Electrical Sump Pumps (PD).pdf", + "markup_updated_at": "2025-05-15T18:41:10Z", + "state": "outdated", + "updated_at": "2025-05-15T17:55:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVAHCW6X1J42JR7RFBQN0EMA?companyId=8089&projectId=2563870&sig=4213d6e2645e82460e12e47c0174a7e40205e94ca85c01452304803de32760e5", + "version_timestamp": "2025-05-15T17:55:50Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-05", + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155528239, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155528240, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-05", + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-05T18:10:36Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-20T12:38:28Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-23", + "formatted_number": "22 21 23-1", + "issue_date": "2025-05-05", + "last_distributed_submittal": { + "id": 27293701, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38310219, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5436668251, + "content_type": "application/pdf", + "filename": "22 21 23-1.1 - Mechanical Pumps-Electric Sump Pump-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5436668251, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVN1Q9564ZPG9BD5M6NEFK0S?companyId=8089&projectId=2563870&sig=f8afbf24f56c40baeccdd5286d87df166cadbbebbec38d701340ba39ac7f73d1", + "viewable_document_id": 838025429 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155528249, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "MJ,
\nPlease furnish as submitted.
", + "sent_at": "2025-05-20T12:38:28Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6914369, + "name": "David Phelps" + }, + "required_on_site_date": "2025-06-25", + "responsible_contractor": { + "id": 21615366, + "name": "MJ Mechanical, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037788, + "current_revision_id": 45441175, + "description": "MECHANICAL PUMPS", + "label": "22 21 23 - MECHANICAL PUMPS", + "number": "22 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331426 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Mechanical Pumps: Electric Sump Pump (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-20T12:38:28Z" + }, + { + "id": 63068955, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155681808, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139452169, + "additional_page_count": 0, + "attached_at": "2025-05-16T19:26:47Z", + "attachment_id": 5433354341, + "content_type": "application/pdf", + "document_markup_layer_id": 63402095, + "filename": "23 73 00-1.3 - Indoor Central Station Air Handling Unit (For Record)_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-16T19:26:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVD8ZS6RNV154WBGD8DKK177?companyId=8089&projectId=2563870&sig=30a064926708e7286d3df700d21379e9504d2de22def03eab0fb60183fb6efc3", + "version_timestamp": "2025-05-16T19:26:47Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 3 + }, + { + "id": 155681809, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155681810, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-13", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 155681804, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139221425, + "additional_page_count": 0, + "attached_at": "2025-05-13T18:10:19Z", + "attachment_id": 5424319080, + "content_type": "application/pdf", + "document_markup_layer_id": 63215322, + "filename": "237300-01-3 - ACR Sbtl Review - Air Handling Units-Rev3.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-13T18:10:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV5DCRTDPD1EMPD1B9YFHWMV?companyId=8089&projectId=2563870&sig=5782db0dafcdf6f119d80e5e376c1de47c37fb98b46ff640a39ed1c24d1dbec9", + "version_timestamp": "2025-05-13T18:10:19Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-13", + "sent_date": "2025-05-06", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 155681807, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155681806, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155681805, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155681801, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138857676, + "additional_page_count": 1, + "attached_at": "2025-05-06T19:54:24Z", + "attachment_id": 5410047601, + "content_type": "application/pdf", + "document_markup_layer_id": 62923594, + "filename": "23 7300 - Indoor Air Handlers Resubmittal 4.0 - AAN.pdf", + "markup_updated_at": "2025-05-06T19:58:32Z", + "state": "excluded", + "updated_at": "2025-05-06T19:58:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKJKJWYRJ53SAEMEEPR8A7G?companyId=8089&projectId=2563870&sig=66281d44ea9d0aab6434fabf5e66eb03540bb27a13d1cc2cbe26e35dbdbe8b8d", + "version_timestamp": "2025-05-06T19:58:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": "2025-05-06", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155681803, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155681798, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138857190, + "additional_page_count": 1, + "attached_at": "2025-05-06T19:54:24Z", + "attachment_id": 5410047601, + "content_type": "application/pdf", + "document_markup_layer_id": 62923594, + "filename": "23 7300 - Indoor Air Handlers Resubmittal 4.0 - AAN.pdf", + "markup_updated_at": "2025-05-06T19:58:32Z", + "state": "outdated", + "updated_at": "2025-05-06T19:54:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTKJKJWYRJ53SAEMEEPR8A7G?companyId=8089&projectId=2563870&sig=66281d44ea9d0aab6434fabf5e66eb03540bb27a13d1cc2cbe26e35dbdbe8b8d", + "version_timestamp": "2025-05-06T19:54:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-06", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155681802, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-06", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155681800, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155681799, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155681797, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-13", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-06T19:53:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-19T13:40:01Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-20", + "formatted_number": "23 73 00-1", + "issue_date": "2025-05-06", + "last_distributed_submittal": { + "id": 27276436, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38284075, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5433354341, + "content_type": "application/pdf", + "filename": "23 73 00-1.3 - Indoor Central Station Air Handling Unit (For Record)_ACR_H2MG.pdf", + "source_prostore_file_id": 5433354341, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVD8ZS6RNV154WBGD8DKK177?companyId=8089&projectId=2563870&sig=30a064926708e7286d3df700d21379e9504d2de22def03eab0fb60183fb6efc3", + "viewable_document_id": 837400157 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 155681808, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-19T13:40:01Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": "2025-02-05", + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "3", + "scheduled_task": null, + "specification_section": { + "id": 36037822, + "current_revision_id": 45441253, + "description": "INDOOR CENTRAL STATION AIR HANDLING UNIT", + "label": "23 73 00 - INDOOR CENTRAL STATION AIR HANDLING UNIT", + "number": "23 73 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331519 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Indoor Central Station Air Handling Unit ( For Record)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-19T13:40:01Z" + }, + { + "id": 63094076, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155766648, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139357237, + "additional_page_count": 0, + "attached_at": "2025-05-15T15:15:04Z", + "attachment_id": 5429582186, + "content_type": "application/pdf", + "document_markup_layer_id": 63320484, + "filename": "23 01 00-2.0 - Area C Floor and Roof Coordination Drawings (Record Only)_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-15T15:15:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA85WXHF0B73FD0H9WE7JS8?companyId=8089&projectId=2563870&sig=54c875613ba564c79d9deeb98366f3be51d6ac63593b6756762524bed2641a31", + "version_timestamp": "2025-05-15T15:15:04Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": "2025-05-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 155766650, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155766649, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155766647, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155766646, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 155766644, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 138911297, + "additional_page_count": 0, + "attached_at": "2025-05-07T16:35:48Z", + "attachment_id": 5412189747, + "content_type": "application/pdf", + "document_markup_layer_id": 62968348, + "filename": "23 01 00 2.0 - Area C Floor and Roof Coordination Drawings (Record Only)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-07T16:35:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTNSMDJ69T2RK42CV2MEX5D4?companyId=8089&projectId=2563870&sig=f89833cd1f2f9cccd98162296a6dc2c468d6176f18ecd195e01ef35dd9213eab", + "version_timestamp": "2025-05-07T16:35:48Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-07", + "sent_date": "2025-05-07", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 155766643, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155766645, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-07", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 155766642, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 138909054, + "additional_page_count": 1, + "attached_at": "2025-05-07T16:11:04Z", + "attachment_id": 5412098637, + "content_type": "application/pdf", + "document_markup_layer_id": 62966336, + "filename": "51005_Houston ES - Area C Penthouse Floor Opening Shop Dwg 4-24-25.pdf", + "markup_updated_at": "2025-05-07T16:35:00Z", + "state": "excluded", + "updated_at": "2025-05-07T16:11:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTNR7DFJA28EF8ZPWQ02FN02?companyId=8089&projectId=2563870&sig=4333c3853d8b598c958f8657831aa2d22cbecb56c1ab3fc3aabf020d5e3b2a97", + "version_timestamp": "2025-05-07T16:11:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-07", + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 155766641, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155766640, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 155766638, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-07T16:07:32Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-15T15:20:56Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-14", + "formatted_number": "23 01 00-2", + "issue_date": "2025-05-07", + "last_distributed_submittal": { + "id": 27244564, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38236015, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5429582186, + "content_type": "application/pdf", + "filename": "23 01 00-2.0 - Area C Floor and Roof Coordination Drawings (Record Only)_ACR_H2MG.pdf", + "source_prostore_file_id": 5429582186, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA85WXHF0B73FD0H9WE7JS8?companyId=8089&projectId=2563870&sig=54c875613ba564c79d9deeb98366f3be51d6ac63593b6756762524bed2641a31", + "viewable_document_id": 836749896 + } + ], + "response_name": "Approved", + "submittal_approver_id": 155766648, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + } + ], + "message": "VAC,
\nSee for your records and include with you as-builts.
", + "sent_at": "2025-05-15T15:20:56Z" + }, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 2026297, + "name": "David Schad" + }, + "required_on_site_date": "2025-05-21", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037798, + "current_revision_id": 45441182, + "description": "COMMISSIONING OF MECHANICAL SYSTEMS", + "label": "23 01 00 - COMMISSIONING OF MECHANICAL SYSTEMS", + "number": "23 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331437 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-29", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C Floor and Roof Coordination Drawings (Record Only)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-05-15T15:20:56Z" + }, + { + "id": 63134459, + "actual_delivery_date": null, + "approvers": [ + { + "id": 155902989, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139429392, + "additional_page_count": 0, + "attached_at": "2025-05-16T15:29:51Z", + "attachment_id": 5432519908, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 3.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-16T15:29:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCVE6YFYJY4CPXDJAPE4N8Y?companyId=8089&projectId=2563870&sig=d1074eb3d52a72b5f088dec877f4405cd03b008c26bfd8e5ae836b8f32670506", + "version_timestamp": "2025-05-16T15:29:51Z" + }, + { + "id": 139429391, + "additional_page_count": 0, + "attached_at": "2025-05-16T15:29:51Z", + "attachment_id": 5432519664, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 4.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-16T15:29:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCVE7038N0KC1WQCRQHP66B?companyId=8089&projectId=2563870&sig=b81437d6c8fb214103eab3aded56cfd05f439b7ccfd5b650c5e7d7137bf820d2", + "version_timestamp": "2025-05-16T15:29:51Z" + }, + { + "id": 138986812, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:07:58Z", + "attachment_id": 5415178613, + "content_type": "application/pdf", + "document_markup_layer_id": 63039879, + "filename": "Erection sheets_SEQ 1.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-08T17:07:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7CAZ3HYE1K7R89J46X2?companyId=8089&projectId=2563870&sig=f4cb7fcc0dcf07577f1843427895a27fdaba705043c5f5a986dd20b92c9c69bb", + "version_timestamp": "2025-05-08T17:07:58Z" + }, + { + "id": 138986811, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:07:57Z", + "attachment_id": 5415178614, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 2.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-08T17:07:58Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7EHBN4QWTVRV97C47NZ?companyId=8089&projectId=2563870&sig=57fb8914d44bc655d9472d9addb8504a4d39801c26ede98e383b28befea23674", + "version_timestamp": "2025-05-08T17:07:57Z" + }, + { + "id": 138986810, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:07:57Z", + "attachment_id": 5415178608, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 5.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-08T17:07:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7DWKQ7VYVHTGNVHX584?companyId=8089&projectId=2563870&sig=18fcac971518a4b65f0a368fd958cb1425854bfdd89b50808e3c852b7769b388", + "version_timestamp": "2025-05-08T17:07:57Z" + }, + { + "id": 138986809, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:07:57Z", + "attachment_id": 5415178605, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 6.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-08T17:07:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7EK2ZVV6DCTXHTZ30WY?companyId=8089&projectId=2563870&sig=4a2ef44d3af35b66443978c2b64f0ff7e98ca9cfcb7e85571ad592e774b72a64", + "version_timestamp": "2025-05-08T17:07:57Z" + }, + { + "id": 138986808, + "additional_page_count": 0, + "attached_at": "2025-05-08T17:07:57Z", + "attachment_id": 5415178600, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "Erection sheets_SEQ 7.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-08T17:07:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7DZMVP8ZKFR7WKHEERG?companyId=8089&projectId=2563870&sig=0fe24f8428d5bc6f2e458fe640b067268a0c766877accc7959a8c449c1783ead", + "version_timestamp": "2025-05-08T17:07:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": true, + "returned_date": "2025-05-16", + "sent_date": "2025-05-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-08T17:06:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-16T15:30:49Z", + "distribution_members": [ + { + "id": 11773778, + "name": "Aaron Glover" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 7064958, + "name": "christian zulaica" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 1368015, + "name": "Ron Mercer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-23", + "formatted_number": "051200-13", + "issue_date": "2025-05-08", + "last_distributed_submittal": { + "id": 27262077, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38262349, + "comment": "", + "distributed_attachments": [ + { + "id": 5432519908, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 3.pdf", + "source_prostore_file_id": 5432519908, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCVE6YFYJY4CPXDJAPE4N8Y?companyId=8089&projectId=2563870&sig=d1074eb3d52a72b5f088dec877f4405cd03b008c26bfd8e5ae836b8f32670506", + "viewable_document_id": 837245489 + }, + { + "id": 5432519664, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 4.pdf", + "source_prostore_file_id": 5432519664, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCVE7038N0KC1WQCRQHP66B?companyId=8089&projectId=2563870&sig=b81437d6c8fb214103eab3aded56cfd05f439b7ccfd5b650c5e7d7137bf820d2", + "viewable_document_id": 837245577 + }, + { + "id": 5415178613, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 1.pdf", + "source_prostore_file_id": 5415178613, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7CAZ3HYE1K7R89J46X2?companyId=8089&projectId=2563870&sig=f4cb7fcc0dcf07577f1843427895a27fdaba705043c5f5a986dd20b92c9c69bb", + "viewable_document_id": 834365412 + }, + { + "id": 5415178614, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 2.pdf", + "source_prostore_file_id": 5415178614, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7EHBN4QWTVRV97C47NZ?companyId=8089&projectId=2563870&sig=57fb8914d44bc655d9472d9addb8504a4d39801c26ede98e383b28befea23674", + "viewable_document_id": 834365078 + }, + { + "id": 5415178608, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 5.pdf", + "source_prostore_file_id": 5415178608, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7DWKQ7VYVHTGNVHX584?companyId=8089&projectId=2563870&sig=18fcac971518a4b65f0a368fd958cb1425854bfdd89b50808e3c852b7769b388", + "viewable_document_id": 834365083 + }, + { + "id": 5415178605, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 6.pdf", + "source_prostore_file_id": 5415178605, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7EK2ZVV6DCTXHTZ30WY?companyId=8089&projectId=2563870&sig=4a2ef44d3af35b66443978c2b64f0ff7e98ca9cfcb7e85571ad592e774b72a64", + "viewable_document_id": 834365022 + }, + { + "id": 5415178600, + "content_type": "application/pdf", + "filename": "Erection sheets_SEQ 7.pdf", + "source_prostore_file_id": 5415178600, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTRDW7DZMVP8ZKFR7WKHEERG?companyId=8089&projectId=2563870&sig=0fe24f8428d5bc6f2e458fe640b067268a0c766877accc7959a8c449c1783ead", + "viewable_document_id": 834365051 + } + ], + "response_name": "For Record Only", + "submittal_approver_id": 155902989, + "submittal_response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "submittal_response_id": 23348894, + "user": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "user_id": 9775551 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 7064958, + "initials": "CZ", + "name": "christian zulaica", + "vendor_name": "Eilers Steel Erection, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Erection sheets for reference.
", + "sent_at": "2025-05-16T15:30:49Z" + }, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "13", + "private": false, + "received_date": null, + "received_from": { + "id": 11773778, + "name": "Aaron Glover" + }, + "required_on_site_date": "2025-05-08", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 2, + "name": "Closed", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-16", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Erection Sheets", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-05-16T15:31:20Z" + }, + { + "id": 63179060, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156063493, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139454416, + "additional_page_count": 0, + "attached_at": "2025-05-16T19:53:48Z", + "attachment_id": 5433436049, + "content_type": "application/pdf", + "document_markup_layer_id": 63393663, + "filename": "26 05 19-1.1 - Metal Clad (MC) - Copper Conductor-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-16T19:53:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVDAH997WA98DNSSGGCG5FMG?companyId=8089&projectId=2563870&sig=bd7302b2cedf5c563bae2a2a6d7e3bf71f8b81e101a2e5bc9dff200ab5b108eb", + "version_timestamp": "2025-05-16T19:53:48Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 156063495, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156063494, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-14", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156063490, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329937, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:14:33Z", + "attachment_id": 5428420794, + "content_type": "application/pdf", + "document_markup_layer_id": 63296923, + "filename": "260519-01-00 - ACR Sbtl Review - Metal Clad (MC) - Copper Conductor.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:14:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8R2ZY5K35Y9X94HEX3HK3N?companyId=8089&projectId=2563870&sig=98d4ecf8dfa579a07ee37d1f29f8f7d958eeb57e92f9f9a32f4bc5612374fb30", + "version_timestamp": "2025-05-15T01:14:33Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-10", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 156063492, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-10", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156063491, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-10", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156063487, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139088268, + "additional_page_count": 1, + "attached_at": "2025-05-10T13:26:17Z", + "attachment_id": 5419099171, + "content_type": "application/pdf", + "document_markup_layer_id": 63104742, + "filename": "26 05 19 - 1.1 - Metal Clad Wire.pdf", + "markup_updated_at": "2025-05-10T13:31:32Z", + "state": "excluded", + "updated_at": "2025-05-10T13:31:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTX5ZTRHW03Q4JPQK3MANW8B?companyId=8089&projectId=2563870&sig=57702816e3e5fde3b4c8618df29a0fc0470145f46ea10b113d6bd134d16b8bd8", + "version_timestamp": "2025-05-10T13:31:32Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-10", + "sent_date": "2025-05-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156063488, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156063489, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-10", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156063484, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139088249, + "additional_page_count": 1, + "attached_at": "2025-05-10T13:26:17Z", + "attachment_id": 5419099171, + "content_type": "application/pdf", + "document_markup_layer_id": 63104742, + "filename": "26 05 19 - 1.1 - Metal Clad Wire.pdf", + "markup_updated_at": "2025-05-10T13:31:32Z", + "state": "outdated", + "updated_at": "2025-05-10T13:26:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JTX5ZTRHW03Q4JPQK3MANW8B?companyId=8089&projectId=2563870&sig=57702816e3e5fde3b4c8618df29a0fc0470145f46ea10b113d6bd134d16b8bd8", + "version_timestamp": "2025-05-10T13:26:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-10", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -4, + "workflow_group_number": 0 + }, + { + "id": 156063486, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156063485, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-10T13:25:01Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-19T13:38:48Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "26 05 19-1", + "issue_date": "2025-05-10", + "last_distributed_submittal": { + "id": 27276394, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38284018, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5433436049, + "content_type": "application/pdf", + "filename": "26 05 19-1.1 - Metal Clad (MC) - Copper Conductor-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5433436049, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVDAH997WA98DNSSGGCG5FMG?companyId=8089&projectId=2563870&sig=bd7302b2cedf5c563bae2a2a6d7e3bf71f8b81e101a2e5bc9dff200ab5b108eb", + "viewable_document_id": 837414275 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156063493, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-05-19T13:38:48Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037831, + "current_revision_id": 45441277, + "description": "INSULATED CONDUCTORS", + "label": "26 05 19 - INSULATED CONDUCTORS", + "number": "26 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331554 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Clad (MC) - Copper Conductor (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-19T13:38:48Z" + }, + { + "id": 63191073, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162250606, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143303242, + "additional_page_count": 0, + "attached_at": "2025-08-01T22:25:35Z", + "attachment_id": 5598787293, + "content_type": "application/pdf", + "document_markup_layer_id": 66571191, + "filename": "23 21 13-1.1 - Hot Water and Chilled Water Piping Valves and Appurtenances-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-01T22:25:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1KVSQFWQJNV21XTBRRJ11E9?companyId=8089&projectId=2563870&sig=1a17b9f5a6602901d6f387144d897566edba9ec5ad1a6b4d1eefda74904c67ef", + "version_timestamp": "2025-08-01T22:25:35Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-08-07", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-01", + "sent_date": "2025-07-31", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 162250602, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143214362, + "additional_page_count": 0, + "attached_at": "2025-07-31T16:23:47Z", + "attachment_id": 5594867084, + "content_type": "application/pdf", + "document_markup_layer_id": 66501957, + "filename": "232113-01-01 - ACR Sbtl Review - Hydronic Piping.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-31T16:23:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1GMQ78G5WDG0M3HSTGE0PF1?companyId=8089&projectId=2563870&sig=b47e956d458625c8d76c57d09f12370a0837ece44012c6e4baabee00c570ee0b", + "version_timestamp": "2025-07-31T16:23:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-31", + "sent_date": "2025-07-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 162250605, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162250604, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162250603, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162250599, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142838429, + "additional_page_count": 1, + "attached_at": "2025-07-24T02:30:22Z", + "attachment_id": 5577935318, + "content_type": "application/pdf", + "document_markup_layer_id": 66191421, + "filename": "23 2113 - Hydronic Piping & Valves Resubmittal.pdf", + "markup_updated_at": "2025-07-24T04:09:27Z", + "state": "excluded", + "updated_at": "2025-07-24T04:09:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0X48NMF2RSBXGR4MS2AEM5J?companyId=8089&projectId=2563870&sig=c4390adfeb151dfbef569e3646f30b4ce25f7b8e67b81794b7d0a3fb690de09e", + "version_timestamp": "2025-07-24T04:09:27Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": "2025-07-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 162250600, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162250601, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162250596, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142837373, + "additional_page_count": 1, + "attached_at": "2025-07-24T02:30:22Z", + "attachment_id": 5577935318, + "content_type": "application/pdf", + "document_markup_layer_id": 66191421, + "filename": "23 2113 - Hydronic Piping & Valves Resubmittal.pdf", + "markup_updated_at": "2025-07-24T04:09:27Z", + "state": "outdated", + "updated_at": "2025-07-24T02:30:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0X48NMF2RSBXGR4MS2AEM5J?companyId=8089&projectId=2563870&sig=c4390adfeb151dfbef569e3646f30b4ce25f7b8e67b81794b7d0a3fb690de09e", + "version_timestamp": "2025-07-24T02:30:22Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 162250598, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162250597, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162250595, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-12T15:09:12Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-05T14:12:51Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-08-07", + "formatted_number": "23 21 13-1", + "issue_date": "2025-05-12", + "last_distributed_submittal": { + "id": 28284118, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39780909, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5598787293, + "content_type": "application/pdf", + "filename": "23 21 13-1.1 - Hot Water and Chilled Water Piping Valves and Appurtenances-PD_H2MG.pdf", + "source_prostore_file_id": 5598787293, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1KVSQFWQJNV21XTBRRJ11E9?companyId=8089&projectId=2563870&sig=1a17b9f5a6602901d6f387144d897566edba9ec5ad1a6b4d1eefda74904c67ef", + "viewable_document_id": 866327715 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162250606, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-05T14:12:51Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hot Water and Chilled Water Piping Valves and Appurtenances (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-05T14:12:51Z" + }, + { + "id": 63195399, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156125300, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140000960, + "additional_page_count": 0, + "attached_at": "2025-05-28T20:42:39Z", + "attachment_id": 5455893949, + "content_type": "application/pdf", + "document_markup_layer_id": 63846292, + "filename": "23 82 19-1.1 - Fan Coil Units-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-28T20:42:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWCA3GFR3RKBBWAN1CZ5ATFZ?companyId=8089&projectId=2563870&sig=af8ae4021d24e54f51b489cda9174c16b58b7734a0399bb381ea1c6748ee34fb", + "version_timestamp": "2025-05-28T20:42:39Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-28", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 4, + "workflow_group_number": 3 + }, + { + "id": 156125296, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329869, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:10:07Z", + "attachment_id": 5428417067, + "content_type": "application/pdf", + "document_markup_layer_id": 63296866, + "filename": "238219-01-01 - ACR Sbtl Review - Fan Coil Units.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:10:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8QV9C3GV2Y2T48J7PH6GWB?companyId=8089&projectId=2563870&sig=cc2cba8c5917790c3d0deb4192159495bcfe116333c9ee9e85a8994db0cda60e", + "version_timestamp": "2025-05-15T01:10:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-12", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 156125299, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156125298, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156125297, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156125293, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139124307, + "additional_page_count": 1, + "attached_at": "2025-05-12T16:13:47Z", + "attachment_id": 5420841855, + "content_type": "application/pdf", + "document_markup_layer_id": 63138897, + "filename": "23 8219 - Fan Coil Units Resubmittal - AAN.pdf", + "markup_updated_at": "2025-05-12T16:16:31Z", + "state": "excluded", + "updated_at": "2025-05-12T16:16:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2MBZA65W6QQTAHEC2Q3SDF?companyId=8089&projectId=2563870&sig=884afd92ca5f6bd926e980eb4944afadf99d2d5a9268c72a07f441804b575bdf", + "version_timestamp": "2025-05-12T16:16:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156125294, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156125295, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156125290, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139124095, + "additional_page_count": 1, + "attached_at": "2025-05-12T16:13:47Z", + "attachment_id": 5420841855, + "content_type": "application/pdf", + "document_markup_layer_id": 63138897, + "filename": "23 8219 - Fan Coil Units Resubmittal - AAN.pdf", + "markup_updated_at": "2025-05-12T16:16:31Z", + "state": "outdated", + "updated_at": "2025-05-12T16:13:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV2MBZA65W6QQTAHEC2Q3SDF?companyId=8089&projectId=2563870&sig=884afd92ca5f6bd926e980eb4944afadf99d2d5a9268c72a07f441804b575bdf", + "version_timestamp": "2025-05-12T16:13:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156125292, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156125291, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156125289, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-12T16:13:32Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-29T19:35:00Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "23 82 19-1", + "issue_date": "2025-05-12", + "last_distributed_submittal": { + "id": 27424701, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38508538, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5455893949, + "content_type": "application/pdf", + "filename": "23 82 19-1.1 - Fan Coil Units-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5455893949, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWCA3GFR3RKBBWAN1CZ5ATFZ?companyId=8089&projectId=2563870&sig=af8ae4021d24e54f51b489cda9174c16b58b7734a0399bb381ea1c6748ee34fb", + "viewable_document_id": 841511319 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156125300, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-29T19:35:00Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037824, + "current_revision_id": 45441259, + "description": "FAN COIL UNITS", + "label": "23 82 19 - FAN COIL UNITS", + "number": "23 82 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331530 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fan Coil Units (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-17T15:58:25Z" + }, + { + "id": 63210519, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156180941, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139929337, + "additional_page_count": 0, + "attached_at": "2025-05-27T21:57:42Z", + "attachment_id": 5453035897, + "content_type": "application/pdf", + "document_markup_layer_id": 63784044, + "filename": "23 09 00-1.1 - Adjustable Frequency Drive-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-27T21:57:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW9W0247D8CNJE3ZY6ZARQWX?companyId=8089&projectId=2563870&sig=26c3201e535634b7fde722a25bbdfea2ccd52a72134e5bf2b5bedd41e293ef09", + "version_timestamp": "2025-05-27T21:57:42Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-27", + "sent_date": "2025-05-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 156180937, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139432117, + "additional_page_count": 0, + "attached_at": "2025-05-16T15:52:37Z", + "attachment_id": 5432606526, + "content_type": "application/pdf", + "document_markup_layer_id": 63377383, + "filename": "230900-01-1 - ACR Sbtl Review - Variable Frequency Drives.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-16T15:52:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCWQQ36DBFX5TV2T5CD106G?companyId=8089&projectId=2563870&sig=52df98d1d51fc20d99e6de0009d30108188f51f8f8723e7d99cfe966afb7a485", + "version_timestamp": "2025-05-16T15:52:37Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-12", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 156180940, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156180939, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156180938, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156180935, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139157598, + "additional_page_count": 1, + "attached_at": "2025-05-12T20:44:02Z", + "attachment_id": 5421912316, + "content_type": "application/pdf", + "document_markup_layer_id": 63163968, + "filename": "23 0900 - Variable Freq Drives Resubmittal (AHUs) - AAN.pdf", + "markup_updated_at": "2025-05-12T20:49:37Z", + "state": "excluded", + "updated_at": "2025-05-12T20:49:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV33TNB5XV67G62G31CV2B5D?companyId=8089&projectId=2563870&sig=6f8684186689cb993102435ac6575e5d90181070871d774e96a4e51db0199372", + "version_timestamp": "2025-05-12T20:49:37Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156180936, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156180932, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139157048, + "additional_page_count": 1, + "attached_at": "2025-05-12T20:44:02Z", + "attachment_id": 5421912316, + "content_type": "application/pdf", + "document_markup_layer_id": 63163968, + "filename": "23 0900 - Variable Freq Drives Resubmittal (AHUs) - AAN.pdf", + "markup_updated_at": "2025-05-12T20:49:37Z", + "state": "outdated", + "updated_at": "2025-05-12T20:44:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV33TNB5XV67G62G31CV2B5D?companyId=8089&projectId=2563870&sig=6f8684186689cb993102435ac6575e5d90181070871d774e96a4e51db0199372", + "version_timestamp": "2025-05-12T20:44:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156180934, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156180933, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156180931, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-12T20:43:27Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-05-28T14:01:15Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-23", + "formatted_number": "23 09 00-1", + "issue_date": "2025-05-12", + "last_distributed_submittal": { + "id": 27395427, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38465520, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5453035897, + "content_type": "application/pdf", + "filename": "23 09 00-1.1 - Adjustable Frequency Drive-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5453035897, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW9W0247D8CNJE3ZY6ZARQWX?companyId=8089&projectId=2563870&sig=26c3201e535634b7fde722a25bbdfea2ccd52a72134e5bf2b5bedd41e293ef09", + "viewable_document_id": 840975072 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156180941, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please submit for record.
", + "sent_at": "2025-05-28T14:01:15Z" + }, + "lead_time": 75, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037810, + "current_revision_id": 44088322, + "description": "Instrumentation and Control for HVAC", + "label": "23 09 00 - Instrumentation and Control for HVAC", + "number": "23 09 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023712 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Adjustable Frequency Drive (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-28T14:02:07Z" + }, + { + "id": 63210909, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156182457, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139808887, + "additional_page_count": 0, + "attached_at": "2025-05-23T16:12:00Z", + "attachment_id": 5447706486, + "content_type": "application/pdf", + "document_markup_layer_id": 63738571, + "filename": "26 27 26-2.0 - Wiring Devices-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-23T16:12:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVYYMB9Q58YN94K47EPS0Q8E?companyId=8089&projectId=2563870&sig=f4fb85b6741783c56d05ccc0290a5b46d0c33f77230ad08dda0b36c18619443d", + "version_timestamp": "2025-05-23T16:12:00Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-23", + "sent_date": "2025-05-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 156182453, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139329904, + "additional_page_count": 0, + "attached_at": "2025-05-15T01:12:19Z", + "attachment_id": 5428419254, + "content_type": "application/pdf", + "document_markup_layer_id": 63296890, + "filename": "262726-02-00 - ACR Sbtl Review - Wiring Devices.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-15T01:12:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV8QZGA01XWW8STRGAN7370K?companyId=8089&projectId=2563870&sig=cef365a259d29e2d62925123b6272f2bc393a3a4108ce1d06bc353c7858a4d6b", + "version_timestamp": "2025-05-15T01:12:19Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-14", + "sent_date": "2025-05-12", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 156182456, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156182455, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156182454, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156182450, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139159667, + "additional_page_count": 1, + "attached_at": "2025-05-12T21:05:46Z", + "attachment_id": 5421995938, + "content_type": "application/pdf", + "document_markup_layer_id": 63165348, + "filename": "26 27 26 - 2.0 - Electrical Devices.pdf", + "markup_updated_at": "2025-05-12T21:08:42Z", + "state": "excluded", + "updated_at": "2025-05-12T21:08:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV352EEF4RDXGFNABV39W351?companyId=8089&projectId=2563870&sig=30bc7a15b4ecb21aad8bbd09d208515715e96eeff04aca421a41b720e8580a9a", + "version_timestamp": "2025-05-12T21:08:42Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": "2025-05-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156182451, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156182452, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-12", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-12", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156182447, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139159292, + "additional_page_count": 1, + "attached_at": "2025-05-12T21:05:46Z", + "attachment_id": 5421995938, + "content_type": "application/pdf", + "document_markup_layer_id": 63165348, + "filename": "26 27 26 - 2.0 - Electrical Devices.pdf", + "markup_updated_at": "2025-05-12T21:08:42Z", + "state": "outdated", + "updated_at": "2025-05-12T21:05:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JV352EEF4RDXGFNABV39W351?companyId=8089&projectId=2563870&sig=30bc7a15b4ecb21aad8bbd09d208515715e96eeff04aca421a41b720e8580a9a", + "version_timestamp": "2025-05-12T21:05:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156182449, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156182448, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-12T20:52:47Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-27T13:57:47Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-05-22", + "formatted_number": "26 27 26-2", + "issue_date": "2025-05-12", + "last_distributed_submittal": { + "id": 27373223, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38431832, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5447706486, + "content_type": "application/pdf", + "filename": "26 27 26-2.0 - Wiring Devices-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5447706486, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVYYMB9Q58YN94K47EPS0Q8E?companyId=8089&projectId=2563870&sig=f4fb85b6741783c56d05ccc0290a5b46d0c33f77230ad08dda0b36c18619443d", + "viewable_document_id": 840026039 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156182457, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-27T13:57:47Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037841, + "current_revision_id": 45441309, + "description": "WIRING DEVICES", + "label": "26 27 26 - WIRING DEVICES", + "number": "26 27 26", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331580 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wiring Devices (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-05-27T13:57:47Z" + }, + { + "id": 63291685, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156470317, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140505975, + "additional_page_count": 0, + "attached_at": "2025-06-06T19:35:18Z", + "attachment_id": 5476778309, + "content_type": "application/pdf", + "document_markup_layer_id": 64258214, + "filename": "23 34 00-1.1 - HVAC Fans-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-06T19:35:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX3BTHNBQ0NDF955SK7GQ6WM?companyId=8089&projectId=2563870&sig=6a65014e9ff56830be6df06713ad69de7f6047d495292ccb56a56895ef166e92", + "version_timestamp": "2025-06-06T19:35:18Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-06", + "sent_date": "2025-06-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 156470318, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-02", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156470319, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156470312, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140226500, + "additional_page_count": 0, + "attached_at": "2025-06-02T21:24:01Z", + "attachment_id": 5465249846, + "content_type": "application/pdf", + "document_markup_layer_id": 64027868, + "filename": "233400-01-01 - ACR Sbtl Review - HVAC Fans.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-02T21:24:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWS8DEKM4HECYKWX548PN7NG?companyId=8089&projectId=2563870&sig=336e87e9b21f2d71c77e5d2d74e010bbaec04da7f28b794ea51c797fc12f62c8", + "version_timestamp": "2025-06-02T21:24:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-02", + "sent_date": "2025-05-27", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 156470316, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156470315, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156470314, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156470313, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156470309, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139874607, + "additional_page_count": 1, + "attached_at": "2025-05-15T13:17:18Z", + "attachment_id": 5429116078, + "content_type": "application/pdf", + "document_markup_layer_id": 63736071, + "filename": "23 3400 - HVAC Fans Submittal - AAN (UPDATED).pdf", + "markup_updated_at": "2025-05-27T14:25:51Z", + "state": "excluded", + "updated_at": "2025-05-27T14:25:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA1EP6YK7WZ61FYWN5HQN4K?companyId=8089&projectId=2563870&sig=842a64aebd766c4719087080466f42208ee62bbed176dbe0e1fcfd91ded89892", + "version_timestamp": "2025-05-27T14:25:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-27", + "sent_date": "2025-05-15", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 3, + "workflow_group_number": 1 + }, + { + "id": 156470310, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156470311, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156470306, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139344504, + "additional_page_count": 1, + "attached_at": "2025-05-15T13:17:18Z", + "attachment_id": 5429116078, + "content_type": "application/pdf", + "document_markup_layer_id": 63736071, + "filename": "23 3400 - HVAC Fans Submittal - AAN (UPDATED).pdf", + "markup_updated_at": "2025-05-27T14:25:51Z", + "state": "outdated", + "updated_at": "2025-05-15T13:17:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVA1EP6YK7WZ61FYWN5HQN4K?companyId=8089&projectId=2563870&sig=842a64aebd766c4719087080466f42208ee62bbed176dbe0e1fcfd91ded89892", + "version_timestamp": "2025-05-15T13:17:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156470308, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156470307, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156470305, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-15T13:14:58Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-09T13:42:27Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "23 34 00-1", + "issue_date": "2025-05-15", + "last_distributed_submittal": { + "id": 27544875, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38689088, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5476778309, + "content_type": "application/pdf", + "filename": "23 34 00-1.1 - HVAC Fans-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5476778309, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX3BTHNBQ0NDF955SK7GQ6WM?companyId=8089&projectId=2563870&sig=6a65014e9ff56830be6df06713ad69de7f6047d495292ccb56a56895ef166e92", + "viewable_document_id": 845140500 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156470317, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-09T13:42:27Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037818, + "current_revision_id": 45441239, + "description": "Fans", + "label": "23 34 00 - Fans", + "number": "23 34 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331506 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "HVAC Fans (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-09T13:42:27Z" + }, + { + "id": 63309572, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156537324, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140201681, + "additional_page_count": 0, + "attached_at": "2025-06-02T17:46:39Z", + "attachment_id": 5464376126, + "content_type": "application/pdf", + "document_markup_layer_id": 64008979, + "filename": "23 01 00-3.0 - Area A Floor and Roof Penetration Coordination Drawings (For Record)_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-02T17:46:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWRW0GPT6TPQQYC12VQWS0JS?companyId=8089&projectId=2563870&sig=e65e0c610e8876a67ef2933fe03cfe76db56220a825efa31a38d2f8b2e34e8d6", + "version_timestamp": "2025-06-02T17:46:39Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-02", + "sent_date": "2025-05-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 156537319, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR submittal review need.\u00a0", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-23", + "sent_date": "2025-05-15", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 156537322, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156537321, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156537320, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156537317, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139388913, + "additional_page_count": 1, + "attached_at": "2025-05-15T19:08:17Z", + "attachment_id": 5430470042, + "content_type": "application/pdf", + "document_markup_layer_id": 63343941, + "filename": "23 01 00 3.0 - Area a Floor and Roof Penetration Coordination Drawings (For Record).pdf", + "markup_updated_at": "2025-05-15T20:06:32Z", + "state": "excluded", + "updated_at": "2025-05-15T20:06:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVANG1FHT82P9J9MMZ1N8JHW?companyId=8089&projectId=2563870&sig=3df9ebd02478408eb37221c602453008ad81c6d3b0750d875bb1f813166c7bc9", + "version_timestamp": "2025-05-15T20:06:32Z" + } + ], + "comment": "Submitted for record review.", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-15", + "sent_date": "2025-05-15", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156537316, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156537318, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-15", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156537309, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139382796, + "additional_page_count": 1, + "attached_at": "2025-05-15T19:08:17Z", + "attachment_id": 5430470042, + "content_type": "application/pdf", + "document_markup_layer_id": 63343941, + "filename": "23 01 00 3.0 - Area a Floor and Roof Penetration Coordination Drawings (For Record).pdf", + "markup_updated_at": "2025-05-15T20:06:32Z", + "state": "outdated", + "updated_at": "2025-05-15T19:08:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVANG1FHT82P9J9MMZ1N8JHW?companyId=8089&projectId=2563870&sig=3df9ebd02478408eb37221c602453008ad81c6d3b0750d875bb1f813166c7bc9", + "version_timestamp": "2025-05-15T19:08:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-12", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -8, + "workflow_group_number": 0 + }, + { + "id": 156537315, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156537313, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156537307, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-15T19:05:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-03T13:41:58Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 12187300, + "name": "Carlos Molina" + } + ], + "drawing_ids": [], + "due_date": "2025-05-30", + "formatted_number": "23 01 00-3", + "issue_date": "2025-05-15", + "last_distributed_submittal": { + "id": 27471502, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38579277, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5464376126, + "content_type": "application/pdf", + "filename": "23 01 00-3.0 - Area A Floor and Roof Penetration Coordination Drawings (For Record)_H2MG.pdf", + "source_prostore_file_id": 5464376126, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWRW0GPT6TPQQYC12VQWS0JS?companyId=8089&projectId=2563870&sig=e65e0c610e8876a67ef2933fe03cfe76db56220a825efa31a38d2f8b2e34e8d6", + "viewable_document_id": 843008111 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156537324, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-03T13:41:58Z" + }, + "lead_time": 1, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2025-07-22", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037798, + "current_revision_id": 45441182, + "description": "COMMISSIONING OF MECHANICAL SYSTEMS", + "label": "23 01 00 - COMMISSIONING OF MECHANICAL SYSTEMS", + "number": "23 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331437 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A Floor and Roof Penetration Coordination Drawings (For Record)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-06-03T13:41:58Z" + }, + { + "id": 63314812, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156563100, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139737716, + "additional_page_count": 0, + "attached_at": "2025-05-22T16:27:08Z", + "attachment_id": 5444821817, + "content_type": "application/pdf", + "document_markup_layer_id": 63625925, + "filename": "33 05 50-2.2 - Wasterwater Manholes and J-boxes (For Record)_CVL.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-22T16:27:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWD349SFF70C8NXC74ZRNSB?companyId=8089&projectId=2563870&sig=37ea84f643a89fbf6df04d088809f4b15249d181cbed5069d2cb9cf89d2b83e5", + "version_timestamp": "2025-05-22T16:27:08Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-06-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": "2025-05-22", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 156563099, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139717879, + "additional_page_count": 1, + "attached_at": "2025-05-22T13:14:35Z", + "attachment_id": 5444033924, + "content_type": "application/pdf", + "document_markup_layer_id": 63608828, + "filename": "33 05 50 2.2 - Wastewater Manholes and J-boxes (SD).pdf", + "markup_updated_at": "2025-05-22T13:16:41Z", + "state": "excluded", + "updated_at": "2025-05-22T13:16:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVW22RSFY45QSZPM8AS5XGS8?companyId=8089&projectId=2563870&sig=8a47fde985b6e1c1c07458ee9f538b56ca5d8ac28f30ecec99ff92a4bab08398", + "version_timestamp": "2025-05-22T13:16:41Z" + } + ], + "comment": "Manhole flow line adjusted and size changed to 48\" per civil EOR.", + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": "2025-05-22", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156563098, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156563095, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139717774, + "additional_page_count": 1, + "attached_at": "2025-05-22T13:14:35Z", + "attachment_id": 5444033924, + "content_type": "application/pdf", + "document_markup_layer_id": 63608828, + "filename": "33 05 50 2.2 - Wastewater Manholes and J-boxes (SD).pdf", + "markup_updated_at": "2025-05-22T13:16:41Z", + "state": "outdated", + "updated_at": "2025-05-22T13:14:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVW22RSFY45QSZPM8AS5XGS8?companyId=8089&projectId=2563870&sig=8a47fde985b6e1c1c07458ee9f538b56ca5d8ac28f30ecec99ff92a4bab08398", + "version_timestamp": "2025-05-22T13:14:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": 0, + "workflow_group_number": 0 + }, + { + "id": 156563097, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4697511, + "name": "Lily Zapata" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156563096, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4191720, + "name": "Zach Forth" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-15T20:45:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-02T16:12:29Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-05", + "formatted_number": "33 05 50-2", + "issue_date": "2025-05-15", + "last_distributed_submittal": { + "id": 27455975, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38556021, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5444821817, + "content_type": "application/pdf", + "filename": "33 05 50-2.2 - Wasterwater Manholes and J-boxes (For Record)_CVL.pdf", + "source_prostore_file_id": 5444821817, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWD349SFF70C8NXC74ZRNSB?companyId=8089&projectId=2563870&sig=37ea84f643a89fbf6df04d088809f4b15249d181cbed5069d2cb9cf89d2b83e5", + "viewable_document_id": 839511153 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156563100, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4191720, + "initials": "ZF", + "name": "Zach Forth", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-02T16:12:29Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": "2025-03-14", + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-02-27", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wasterwater Manholes and J-boxes (For Record)", + "type": { + "id": 157594, + "name": "Record Submittal - As-Builts", + "translated_name": "Record Submittal - As-Builts" + }, + "updated_at": "2025-06-02T16:12:29Z" + }, + { + "id": 63329756, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156618303, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140033880, + "additional_page_count": 0, + "attached_at": "2025-05-29T14:09:34Z", + "attachment_id": 5457309521, + "content_type": "application/pdf", + "document_markup_layer_id": 63872792, + "filename": "07 13 26-1.1 - Self-adhering Sheet Waterproofing_Elevator Pit-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-29T14:09:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWE607KDNMDM9REKF0JAF1AD?companyId=8089&projectId=2563870&sig=a7cf037f70802a30a4d29eaf4e3f723cca99313bb2b1dee914a41233d7ac4053", + "version_timestamp": "2025-05-29T14:09:34Z" + } + ], + "comment": "See attached from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-05-29", + "sent_date": "2025-05-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 156618302, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139499993, + "additional_page_count": 0, + "attached_at": "2025-05-19T13:46:25Z", + "attachment_id": 5435273904, + "content_type": "application/pdf", + "document_markup_layer_id": 63434332, + "filename": "07 13 26-1.1 - Self-adhering Sheet Waterproofing_Elevator Pit (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-19T13:46:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMCP0FJEXTP1V8PRM546Q9J?companyId=8089&projectId=2563870&sig=d81a406daca5aecdc7025a494d35fe66a8c177a8aeb2cea70b4b0126d6a69751", + "version_timestamp": "2025-05-19T13:46:25Z" + } + ], + "comment": "See resubmittal with early application primer added.", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 156618301, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156618300, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139433131, + "additional_page_count": 1, + "attached_at": "2025-05-16T16:02:11Z", + "attachment_id": 5432638996, + "content_type": "application/pdf", + "document_markup_layer_id": 63421261, + "filename": "GCPAT_bituthene_adhesive_primer_b2_lvc_us_376.pdf", + "markup_updated_at": "2025-05-19T13:24:04Z", + "state": "excluded", + "updated_at": "2025-05-16T16:02:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCX96YKNXWXKM91W6BDZ410?companyId=8089&projectId=2563870&sig=9bd7f7007bc5f798ffba47fbf48be9727b78f440b3c78b27e9dc0151b771cf5f", + "version_timestamp": "2025-05-16T16:02:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": "2025-05-16", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-16T15:34:34Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-03T13:58:37Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 12187300, + "name": "Carlos Molina" + } + ], + "drawing_ids": [], + "due_date": "2025-06-02", + "formatted_number": "071326-1", + "issue_date": "2025-05-16", + "last_distributed_submittal": { + "id": 27472052, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38580042, + "comment": "See attached from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5457309521, + "content_type": "application/pdf", + "filename": "07 13 26-1.1 - Self-adhering Sheet Waterproofing_Elevator Pit-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5457309521, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWE607KDNMDM9REKF0JAF1AD?companyId=8089&projectId=2563870&sig=a7cf037f70802a30a4d29eaf4e3f723cca99313bb2b1dee914a41233d7ac4053", + "viewable_document_id": 841759850 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156618303, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-03T13:58:37Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-05-20", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037672, + "current_revision_id": 44088231, + "description": "Self-Adhering Sheet Waterproofing", + "label": "071326 - Self-Adhering Sheet Waterproofing", + "number": "071326", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023213 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-24", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Self-Adhering Sheet Waterproofing: Elevator Pit (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-03T13:58:37Z" + }, + { + "id": 63331112, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156647137, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140489572, + "additional_page_count": 0, + "attached_at": "2025-06-06T16:50:13Z", + "attachment_id": 5476171001, + "content_type": "application/pdf", + "document_markup_layer_id": 64523099, + "filename": "05 12 00-14.0 - Area CE-Seq. 1-Deck Opening Frames-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-06T16:50:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX32BV6Y8F8VVMDPY347EY85?companyId=8089&projectId=2563870&sig=a1bf73beab49d84616475151f891da9e6662fa3df1d830292a6fdd7a670adae2", + "version_timestamp": "2025-06-06T16:50:13Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-06", + "sent_date": "2025-05-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 156626476, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156626474, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139446738, + "additional_page_count": 0, + "attached_at": "2025-05-16T18:30:51Z", + "attachment_id": 5433157365, + "content_type": "application/pdf", + "document_markup_layer_id": 63388040, + "filename": "05 12 00 14.0 - Area CE (Seq. 1)_Deck Opening Frames (SD)_RO review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-16T18:30:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVD5S2P6Q9E9VJYKGCG5Z1XW?companyId=8089&projectId=2563870&sig=2683d56d96b0d4a090e47399bf561368ffaf30d0bc1ac1465c2fd1464aef7760", + "version_timestamp": "2025-05-16T18:30:51Z" + } + ], + "comment": "Please review\u00a0 and approve against structural support requirements for openings.", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-05-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": 7, + "workflow_group_number": 1 + }, + { + "id": 156626473, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156626472, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139435295, + "additional_page_count": 0, + "attached_at": "2025-05-16T16:25:07Z", + "attachment_id": 5432716124, + "content_type": "application/pdf", + "document_markup_layer_id": 63387534, + "filename": "05 12 00 14.0 - Area CE (Seq. 1)_Deck Opening Frames (SD).pdf", + "markup_updated_at": "2025-05-16T18:25:17Z", + "state": "excluded", + "updated_at": "2025-05-16T16:25:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCYKCXNC3Z2D07EBJTYW7CS?companyId=8089&projectId=2563870&sig=b6bdcc4347b1ba665c884e976a30a995d67f99a333d466313d047605eff36abe", + "version_timestamp": "2025-05-16T16:25:07Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-05-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-16T16:08:13Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-10T16:54:14Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-17", + "formatted_number": "051200-14", + "issue_date": "2025-05-16", + "last_distributed_submittal": { + "id": 27571714, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38728191, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5476171001, + "content_type": "application/pdf", + "filename": "05 12 00-14.0 - Area CE-Seq. 1-Deck Opening Frames-SD_STR.pdf", + "source_prostore_file_id": 5476171001, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX32BV6Y8F8VVMDPY347EY85?companyId=8089&projectId=2563870&sig=a1bf73beab49d84616475151f891da9e6662fa3df1d830292a6fdd7a670adae2", + "viewable_document_id": 845037466 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156647137, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-10T16:54:14Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "14", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-06-20", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area CE (Seq. 1): Deck Opening Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-10T16:54:14Z" + }, + { + "id": 63331605, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158421255, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140545503, + "additional_page_count": 0, + "attached_at": "2025-06-09T14:22:44Z", + "attachment_id": 5478725566, + "content_type": "application/pdf", + "document_markup_layer_id": 64289912, + "filename": "05 12 00-15.0 - Area CW-Seq. 2-Deck Opening Frames-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-09T14:22:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAH3QT52YDY062FEE2SK012?companyId=8089&projectId=2563870&sig=9f43d3ca2e1f654516046a8144bcd45b05f3340fe5aa5a603a7e81bdc082079a", + "version_timestamp": "2025-06-09T14:22:44Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 156628093, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140254304, + "additional_page_count": 1, + "attached_at": "2025-05-16T16:24:30Z", + "attachment_id": 5432714295, + "content_type": "application/pdf", + "document_markup_layer_id": 64052438, + "filename": "05 12 00 15.0 - Area Cw (Seq. 2)_Deck Opening Frames (SD).pdf", + "markup_updated_at": "2025-06-03T14:06:04Z", + "state": "excluded", + "updated_at": "2025-06-03T14:06:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCYJA07Q02YG36790M80M10?companyId=8089&projectId=2563870&sig=eb53ac1fafc73ed7852bd81d0b1f0677bc5c323e24ce2ac5c83bc31f91a287c9", + "version_timestamp": "2025-06-03T14:06:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-05-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 7, + "workflow_group_number": 1 + }, + { + "id": 156628094, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156628092, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139435237, + "additional_page_count": 1, + "attached_at": "2025-05-16T16:24:30Z", + "attachment_id": 5432714295, + "content_type": "application/pdf", + "document_markup_layer_id": 64052438, + "filename": "05 12 00 15.0 - Area Cw (Seq. 2)_Deck Opening Frames (SD).pdf", + "markup_updated_at": "2025-06-03T14:06:04Z", + "state": "outdated", + "updated_at": "2025-05-16T16:24:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVCYJA07Q02YG36790M80M10?companyId=8089&projectId=2563870&sig=eb53ac1fafc73ed7852bd81d0b1f0677bc5c323e24ce2ac5c83bc31f91a287c9", + "version_timestamp": "2025-05-16T16:24:30Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-16", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-16T16:20:29Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-10T16:53:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-17", + "formatted_number": "051200-15", + "issue_date": "2025-05-16", + "last_distributed_submittal": { + "id": 27571695, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38728170, + "comment": null, + "distributed_attachments": [ + { + "id": 5478725566, + "content_type": "application/pdf", + "filename": "05 12 00-15.0 - Area CW-Seq. 2-Deck Opening Frames-SD_STR.pdf", + "source_prostore_file_id": 5478725566, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAH3QT52YDY062FEE2SK012?companyId=8089&projectId=2563870&sig=9f43d3ca2e1f654516046a8144bcd45b05f3340fe5aa5a603a7e81bdc082079a", + "viewable_document_id": 845465115 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158421255, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-10T16:53:33Z" + }, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "15", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-06-20", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area CW (Seq. 2): Deck Opening Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-10T16:53:33Z" + }, + { + "id": 63364700, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156743603, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "See response in workflow.", + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-23", + "sent_date": "2025-05-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 156743605, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156743604, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-23", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156743600, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139822675, + "additional_page_count": 0, + "attached_at": "2025-05-23T18:45:46Z", + "attachment_id": 5448219283, + "content_type": "application/pdf", + "document_markup_layer_id": 63740930, + "filename": "26 00 73-1.0 - Fault and Coordination Study_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-05-23T18:45:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVZ7DQD5A2DSXA7GF1RJ82D9?companyId=8089&projectId=2563870&sig=35f001c13df58714dfaf2ee0578ad98101ad14e873521aeef449374f7dbb5621", + "version_timestamp": "2025-05-23T18:45:46Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-05-23", + "sent_date": "2025-05-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 156743602, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156743601, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156743599, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156743596, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139516124, + "additional_page_count": 1, + "attached_at": "2025-05-19T16:08:40Z", + "attachment_id": 5435848887, + "content_type": "application/pdf", + "document_markup_layer_id": 63438247, + "filename": "26 00 73 -1.0 - Fault and Coordination Study.pdf", + "markup_updated_at": "2025-05-19T16:16:26Z", + "state": "excluded", + "updated_at": "2025-05-19T16:16:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMMTJE0WS1Z49X6ZHDXCST8?companyId=8089&projectId=2563870&sig=6cd598651d7a5b69f50e72febe3e1273a0d246889eda8e716bfaf72b016798f9", + "version_timestamp": "2025-05-19T16:16:26Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156743597, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156743598, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156743593, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139515442, + "additional_page_count": 1, + "attached_at": "2025-05-19T16:08:40Z", + "attachment_id": 5435848887, + "content_type": "application/pdf", + "document_markup_layer_id": 63438247, + "filename": "26 00 73 -1.0 - Fault and Coordination Study.pdf", + "markup_updated_at": "2025-05-19T16:16:26Z", + "state": "outdated", + "updated_at": "2025-05-19T16:08:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMMTJE0WS1Z49X6ZHDXCST8?companyId=8089&projectId=2563870&sig=6cd598651d7a5b69f50e72febe3e1273a0d246889eda8e716bfaf72b016798f9", + "version_timestamp": "2025-05-19T16:08:40Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156743595, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156743594, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-19T16:07:23Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-05-27T14:25:04Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-05-30", + "formatted_number": "26 00 73-1", + "issue_date": "2025-05-19", + "last_distributed_submittal": { + "id": 27374185, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38433280, + "comment": "See response in workflow.
", + "distributed_attachments": [], + "response_name": "Rejected", + "submittal_approver_id": 156743603, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-05-27T14:25:04Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037829, + "current_revision_id": 45441270, + "description": "FAULT AND COORDINATION STUDY", + "label": "26 00 73 - FAULT AND COORDINATION STUDY", + "number": "26 00 73", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331547 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fault and Coordination Study", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-05-27T14:25:04Z" + }, + { + "id": 63364850, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156744023, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140227458, + "additional_page_count": 0, + "attached_at": "2025-06-02T21:35:46Z", + "attachment_id": 5465285749, + "content_type": "application/pdf", + "document_markup_layer_id": 64049215, + "filename": "26 24 16-1.1 - Panelboards - PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-02T21:35:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWS94889PACAEBVH9XNFDDCZ?companyId=8089&projectId=2563870&sig=c6c131612a28515d68aa7ef9a4f167c2d5491542faf92e5652e9fc8101120668", + "version_timestamp": "2025-06-02T21:35:46Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-02", + "sent_date": "2025-05-26", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 156744025, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-26", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156744024, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-26", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 156744019, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139862753, + "additional_page_count": 0, + "attached_at": "2025-05-27T04:40:13Z", + "attachment_id": 5450434429, + "content_type": "application/pdf", + "document_markup_layer_id": 63723100, + "filename": "262416-01-01 - ACR Sbtl Review - Panelboards.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-05-27T04:40:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JW80MNFK31PQTH2H67YH423B?companyId=8089&projectId=2563870&sig=ce3f1892e6f0fb678211adeb91b35ebd920527c503ff63e67d39d78d625f25a4", + "version_timestamp": "2025-05-27T04:40:13Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-05-26", + "sent_date": "2025-05-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 156744022, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156744021, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156744020, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156744016, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139516382, + "additional_page_count": 1, + "attached_at": "2025-05-19T16:16:48Z", + "attachment_id": 5435859790, + "content_type": "application/pdf", + "document_markup_layer_id": 63438423, + "filename": "26 24 16 -1.1 - Panelboards R1.pdf", + "markup_updated_at": "2025-05-19T16:20:54Z", + "state": "excluded", + "updated_at": "2025-05-19T16:20:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMN0B9C33XWTZ3M5644SF2E?companyId=8089&projectId=2563870&sig=04b17eacb404716fe16104e16f27f2b28036b1a9798510b13f9522c20040f284", + "version_timestamp": "2025-05-19T16:20:54Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": "2025-05-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 156744017, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156744018, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156744013, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139516158, + "additional_page_count": 1, + "attached_at": "2025-05-19T16:16:48Z", + "attachment_id": 5435859790, + "content_type": "application/pdf", + "document_markup_layer_id": 63438423, + "filename": "26 24 16 -1.1 - Panelboards R1.pdf", + "markup_updated_at": "2025-05-19T16:20:54Z", + "state": "outdated", + "updated_at": "2025-05-19T16:16:48Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVMN0B9C33XWTZ3M5644SF2E?companyId=8089&projectId=2563870&sig=04b17eacb404716fe16104e16f27f2b28036b1a9798510b13f9522c20040f284", + "version_timestamp": "2025-05-19T16:16:48Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-19", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 156744015, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156744014, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-19T16:10:51Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-03T13:37:44Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 10141546, + "name": " ACR Technical Review" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 8780461, + "name": "Eamon Higgins" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10145479, + "name": "Terri Lyon" + }, + { + "id": 6856533, + "name": "Walter Haynes" + } + ], + "drawing_ids": [], + "due_date": "2025-06-03", + "formatted_number": "26 24 16-1", + "issue_date": "2025-05-19", + "last_distributed_submittal": { + "id": 27471354, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38579047, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5465285749, + "content_type": "application/pdf", + "filename": "26 24 16-1.1 - Panelboards - PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5465285749, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWS94889PACAEBVH9XNFDDCZ?companyId=8089&projectId=2563870&sig=c6c131612a28515d68aa7ef9a4f167c2d5491542faf92e5652e9fc8101120668", + "viewable_document_id": 843168724 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156744023, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "Please resubmit for record with all of H2MG's comments addressed
", + "sent_at": "2025-06-03T13:37:44Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037840, + "current_revision_id": 45441308, + "description": "PANELBOARDS", + "label": "26 24 16 - PANELBOARDS", + "number": "26 24 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331578 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Panelboards (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-03T13:37:44Z" + }, + { + "id": 63388332, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156828843, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141129357, + "additional_page_count": 0, + "attached_at": "2025-06-19T13:50:51Z", + "attachment_id": 5503204911, + "content_type": "application/pdf", + "document_markup_layer_id": 64782620, + "filename": "07 21 00.01-9.0 - Thermal Insulation-Mineral Wool Board-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-19T13:50:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4797PS1PAHDC4RR35633DW?companyId=8089&projectId=2563870&sig=6b0bf2d81a608dee67a3c7fcbb24d8c3d57d257d9ae8ba18c9208a22e7f3ca8e", + "version_timestamp": "2025-06-19T13:50:51Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-06-25", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-11", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 156828841, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140697328, + "additional_page_count": 1, + "attached_at": "2025-06-11T13:43:16Z", + "attachment_id": 5484779201, + "content_type": "application/pdf", + "document_markup_layer_id": 64418629, + "filename": "072100 - Insulation_submitted.pdf", + "markup_updated_at": "2025-06-11T14:14:55Z", + "state": "excluded", + "updated_at": "2025-06-11T14:14:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFKNXB056H3K92QHMXXS4JD?companyId=8089&projectId=2563870&sig=6e28b74e2cc4636af0389399e9e5a6789d4d7f354dafc40b3a6f7c435fdf30d5", + "version_timestamp": "2025-06-11T14:14:55Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156828842, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156828840, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140694160, + "additional_page_count": 1, + "attached_at": "2025-06-11T13:43:16Z", + "attachment_id": 5484779201, + "content_type": "application/pdf", + "document_markup_layer_id": 64418629, + "filename": "072100 - Insulation_submitted.pdf", + "markup_updated_at": "2025-06-11T14:14:55Z", + "state": "outdated", + "updated_at": "2025-06-11T13:43:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFKNXB056H3K92QHMXXS4JD?companyId=8089&projectId=2563870&sig=6e28b74e2cc4636af0389399e9e5a6789d4d7f354dafc40b3a6f7c435fdf30d5", + "version_timestamp": "2025-06-11T13:43:16Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": 6, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-20T13:25:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-19T15:24:29Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-25", + "formatted_number": "072100.01-9", + "issue_date": "2025-05-20", + "last_distributed_submittal": { + "id": 27701226, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38919478, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5503204911, + "content_type": "application/pdf", + "filename": "07 21 00.01-9.0 - Thermal Insulation-Mineral Wool Board-PD_FGMA.pdf", + "source_prostore_file_id": 5503204911, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY4797PS1PAHDC4RR35633DW?companyId=8089&projectId=2563870&sig=6b0bf2d81a608dee67a3c7fcbb24d8c3d57d257d9ae8ba18c9208a22e7f3ca8e", + "viewable_document_id": 849731614 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 156828843, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-19T15:24:29Z" + }, + "lead_time": 175, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-07-09", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096751, + "current_revision_id": 45441081, + "description": "Thermal Insulation", + "label": "072100.01 - Thermal Insulation", + "number": "072100.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331133 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2024-12-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Thermal Insulation: Mineral Wool Board (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-19T15:24:29Z" + }, + { + "id": 63388638, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158971636, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141427149, + "additional_page_count": 0, + "attached_at": "2025-06-25T16:37:16Z", + "attachment_id": 5516367101, + "content_type": "application/pdf", + "document_markup_layer_id": 65445800, + "filename": "07 92 00.01-1.0 - Joint Sealants-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-25T16:37:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKZ697D74F4GQXJS482JHCR?companyId=8089&projectId=2563870&sig=ec3022feeaaccb75e97f328c3ecfa22fb307c88bd9d342ba98f9f859603ebe93", + "version_timestamp": "2025-06-25T16:37:16Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-06-26", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-25", + "sent_date": "2025-06-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 158971633, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141170652, + "additional_page_count": 0, + "attached_at": "2025-06-19T21:03:06Z", + "attachment_id": 5504855574, + "content_type": "application/pdf", + "document_markup_layer_id": 64825307, + "filename": "07 92 00 -1.0 - Joint Sealants - (EE-AAN).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-19T21:03:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY500Z8KVW78WQEV2A9Q8KAF?companyId=8089&projectId=2563870&sig=03765a19abbf21ba9b005ba3c9ce8932085a4cb0f976e44bbc08ed9ff114335a", + "version_timestamp": "2025-06-19T21:03:06Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-19", + "sent_date": "2025-06-13", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158971635, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158971634, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158971631, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140862854, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:27:09Z", + "attachment_id": 5491899649, + "content_type": "application/pdf", + "document_markup_layer_id": 64551957, + "filename": "07 92 00 -1.0 - Joint Sealants.pdf", + "markup_updated_at": "2025-06-13T19:28:34Z", + "state": "excluded", + "updated_at": "2025-06-13T19:28:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNC50FNTJXGD150K6QEDAVQ?companyId=8089&projectId=2563870&sig=27805812af80809d7d2432513460eb3f273d2016e3ca3eac82c9fb23b75df548", + "version_timestamp": "2025-06-13T19:28:34Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158971632, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158971630, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140862718, + "additional_page_count": 1, + "attached_at": "2025-06-13T19:27:09Z", + "attachment_id": 5491899649, + "content_type": "application/pdf", + "document_markup_layer_id": 64551957, + "filename": "07 92 00 -1.0 - Joint Sealants.pdf", + "markup_updated_at": "2025-06-13T19:28:34Z", + "state": "outdated", + "updated_at": "2025-06-13T19:27:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXNC50FNTJXGD150K6QEDAVQ?companyId=8089&projectId=2563870&sig=27805812af80809d7d2432513460eb3f273d2016e3ca3eac82c9fb23b75df548", + "version_timestamp": "2025-06-13T19:27:09Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-20T13:31:49Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-27T21:37:12Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-26", + "formatted_number": "079200.01-1", + "issue_date": "2025-05-20", + "last_distributed_submittal": { + "id": 27818081, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39092354, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5516367101, + "content_type": "application/pdf", + "filename": "07 92 00.01-1.0 - Joint Sealants-PD_FGMA.pdf", + "source_prostore_file_id": 5516367101, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKZ697D74F4GQXJS482JHCR?companyId=8089&projectId=2563870&sig=ec3022feeaaccb75e97f328c3ecfa22fb307c88bd9d342ba98f9f859603ebe93", + "viewable_document_id": 852099792 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158971636, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-27T21:37:12Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-09-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096756, + "current_revision_id": 45441095, + "description": "JOINT SEALANTS", + "label": "079200.01 - JOINT SEALANTS", + "number": "079200.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331189 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-07-28", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-27T21:37:12Z" + }, + { + "id": 63388668, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156829866, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 156829869, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 156829868, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156829867, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-20T13:32:33Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-24", + "formatted_number": "079200.01-2", + "issue_date": "2025-05-20", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-06-18", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096756, + "current_revision_id": 45441095, + "description": "JOINT SEALANTS", + "label": "079200.01 - JOINT SEALANTS", + "number": "079200.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331189 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-05-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (Samples)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-06-13T19:40:11Z" + }, + { + "id": 63389186, + "actual_delivery_date": null, + "approvers": [ + { + "id": 156832392, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143766352, + "additional_page_count": 0, + "attached_at": "2025-08-12T16:34:24Z", + "attachment_id": 5619450455, + "content_type": "application/pdf", + "document_markup_layer_id": 66967563, + "filename": "07 21 15-1.0 - Spray Applied Cellulosic Sound Insulation-PD_BAi_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-12T16:34:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FJ3E1NG66TX4K2HCSFZ1T6?companyId=8089&projectId=2563870&sig=ad6c165fa100d2e8201fe442c0ca5ca7fd9f663a7969d8a8a911725e1b989afd", + "version_timestamp": "2025-08-12T16:34:24Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-08-04", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-07-21", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 6, + "workflow_group_number": 2 + }, + { + "id": 156832391, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142670640, + "additional_page_count": 1, + "attached_at": "2025-07-21T16:19:06Z", + "attachment_id": 5570184052, + "content_type": "application/pdf", + "document_markup_layer_id": 66049925, + "filename": "07 21 15 1.0 - Spary Applied Cellulosic Sound Insulation (PD).pdf", + "markup_updated_at": "2025-07-21T18:57:10Z", + "state": "excluded", + "updated_at": "2025-07-21T18:57:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0PWEEJG2TXKD87D0K8FV9QR?companyId=8089&projectId=2563870&sig=f3947bb2b792deb4ff6de718484b0968954be825dbeb2a3dd48cd4b2ded44c60", + "version_timestamp": "2025-07-21T18:57:10Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-07-28", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-21", + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 156832390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 156832389, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142654091, + "additional_page_count": 1, + "attached_at": "2025-07-21T16:19:06Z", + "attachment_id": 5570184052, + "content_type": "application/pdf", + "document_markup_layer_id": 66049925, + "filename": "07 21 15 1.0 - Spary Applied Cellulosic Sound Insulation (PD).pdf", + "markup_updated_at": "2025-07-21T18:57:10Z", + "state": "outdated", + "updated_at": "2025-07-21T16:19:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0PWEEJG2TXKD87D0K8FV9QR?companyId=8089&projectId=2563870&sig=f3947bb2b792deb4ff6de718484b0968954be825dbeb2a3dd48cd4b2ded44c60", + "version_timestamp": "2025-07-21T16:19:06Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-21", + "sent_date": "2025-05-20", + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-20T13:43:44Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-12T16:56:13Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-04", + "formatted_number": "072115-1", + "issue_date": "2025-05-20", + "last_distributed_submittal": { + "id": 28380094, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39923221, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5619450455, + "content_type": "application/pdf", + "filename": "07 21 15-1.0 - Spray Applied Cellulosic Sound Insulation-PD_BAi_FGMA.pdf", + "source_prostore_file_id": 5619450455, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FJ3E1NG66TX4K2HCSFZ1T6?companyId=8089&projectId=2563870&sig=ad6c165fa100d2e8201fe442c0ca5ca7fd9f663a7969d8a8a911725e1b989afd", + "viewable_document_id": 869901432 + } + ], + "response_name": "Approved", + "submittal_approver_id": 156832392, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4715359, + "initials": "CS", + "name": "Chad Stone", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as submitted.
", + "sent_at": "2025-08-12T16:56:13Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-08-13", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096752, + "current_revision_id": 45441083, + "description": "SPRAY APPLIED CELLULOSIC SOUND INSULATION", + "label": "072115 - SPRAY APPLIED CELLULOSIC SOUND INSULATION", + "number": "072115", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331138 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-07-09", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Spray Applied Cellulosic Sound Insulation (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-12T16:56:13Z" + }, + { + "id": 63467672, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157095100, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140507530, + "additional_page_count": 0, + "attached_at": "2025-06-06T19:51:55Z", + "attachment_id": 5476832687, + "content_type": "application/pdf", + "document_markup_layer_id": 64295750, + "filename": "26 51 00-1.0 - Lighting Fixtures_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-06T19:51:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX3CR55C4HWM6XS9VAQATVGX?companyId=8089&projectId=2563870&sig=dbee7cf58a9242e32bee1b6bd920a14166c83070d40c99b5b1b096c12be4e236", + "version_timestamp": "2025-06-06T19:51:55Z" + } + ], + "comment": "Please see attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-06", + "sent_date": "2025-06-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 157095101, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-02", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 157095102, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-02", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 157095096, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140227368, + "additional_page_count": 0, + "attached_at": "2025-06-02T21:34:40Z", + "attachment_id": 5465281794, + "content_type": "application/pdf", + "document_markup_layer_id": 64028475, + "filename": "265100-01-00 - ACR Sbtl Review - Lighting Fixtures.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-02T21:34:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWS928GNJJ2QN5WKKHFC0VQ8?companyId=8089&projectId=2563870&sig=95d0e682c36160fd1aef90359ebc439f549dafef28c8b44f973d9132b3bf6f5d", + "version_timestamp": "2025-06-02T21:34:40Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-02", + "sent_date": "2025-05-27", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 157095099, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157095098, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157095097, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157095093, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 139875921, + "additional_page_count": 1, + "attached_at": "2025-05-22T16:02:21Z", + "attachment_id": 5444733323, + "content_type": "application/pdf", + "document_markup_layer_id": 63737399, + "filename": "26 51 00 - 1.0 - Lighting Fixtues.pdf", + "markup_updated_at": "2025-05-27T13:42:29Z", + "state": "excluded", + "updated_at": "2025-05-27T13:42:29Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWBP67WW69721NFSN5Q7RWM?companyId=8089&projectId=2563870&sig=e3f6679896fa1e15cd152f584723bccd6a91418863d20bf7cea2f9ca72dac2e5", + "version_timestamp": "2025-05-27T13:42:29Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-05-22", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-05-27", + "sent_date": "2025-05-22", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 3, + "workflow_group_number": 1 + }, + { + "id": 157095094, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157095095, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-05-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157095090, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 139735282, + "additional_page_count": 1, + "attached_at": "2025-05-22T16:02:21Z", + "attachment_id": 5444733323, + "content_type": "application/pdf", + "document_markup_layer_id": 63737399, + "filename": "26 51 00 - 1.0 - Lighting Fixtues.pdf", + "markup_updated_at": "2025-05-27T13:42:29Z", + "state": "outdated", + "updated_at": "2025-05-22T16:02:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JVWBP67WW69721NFSN5Q7RWM?companyId=8089&projectId=2563870&sig=e3f6679896fa1e15cd152f584723bccd6a91418863d20bf7cea2f9ca72dac2e5", + "version_timestamp": "2025-05-22T16:02:21Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-05-22", + "sent_date": "2025-05-22", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 157095091, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 157095092, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-22", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-22T15:45:38Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-09T15:34:32Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-09", + "formatted_number": "26 51 00-1", + "issue_date": "2025-05-22", + "last_distributed_submittal": { + "id": 27548839, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38694687, + "comment": "Please see attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5476832687, + "content_type": "application/pdf", + "filename": "26 51 00-1.0 - Lighting Fixtures_ACR_H2MG.pdf", + "source_prostore_file_id": 5476832687, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX3CR55C4HWM6XS9VAQATVGX?companyId=8089&projectId=2563870&sig=dbee7cf58a9242e32bee1b6bd920a14166c83070d40c99b5b1b096c12be4e236", + "viewable_document_id": 845157173 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157095100, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-09T15:34:32Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096895, + "current_revision_id": 45441319, + "description": "LIGHTING LUMINAIRES", + "label": "26 51 00 - LIGHTING LUMINAIRES", + "number": "26 51 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331597 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Lighting Fixtures ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-09T15:34:33Z" + }, + { + "id": 63495389, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157187749, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142303336, + "additional_page_count": 0, + "attached_at": "2025-07-14T17:58:11Z", + "attachment_id": 5554956322, + "content_type": "application/pdf", + "document_markup_layer_id": 65749318, + "filename": "23 30 00-3.1 - Wall Louver-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-14T17:58:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K051BV3WAA7YKXMXBW102DVY?companyId=8089&projectId=2563870&sig=45bc222e1990d644d47b7bca0b42082035027a4cf5f785aca2f08bb1a6e8661c", + "version_timestamp": "2025-07-14T17:58:11Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 3, + "workflow_group_number": 3 + }, + { + "id": 157187745, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141807668, + "additional_page_count": 0, + "attached_at": "2025-07-02T20:43:23Z", + "attachment_id": 5532817856, + "content_type": "application/pdf", + "document_markup_layer_id": 65332469, + "filename": "233000-03-01 - ACR Sbtl Review - Ductwork \u2013 Wall Louver.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-02T20:43:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ6E1X7YTMY5Q2EEGNZY5F0R?companyId=8089&projectId=2563870&sig=c45f69f150cd51418b97605eac201171ee9960762bc646f967c07fae1f07c47c", + "version_timestamp": "2025-07-02T20:43:23Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-06-27", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157187748, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157187747, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157187746, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157187742, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141591421, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:59:02Z", + "attachment_id": 5513387913, + "content_type": "application/pdf", + "document_markup_layer_id": 65143218, + "filename": "23 3000 - Wall Louvers Resubmittal.pdf", + "markup_updated_at": "2025-06-27T21:36:02Z", + "state": "excluded", + "updated_at": "2025-06-27T21:36:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHE1T6NF5NP8RXFCXVCEX70?companyId=8089&projectId=2563870&sig=2a9dc7f60537bcef7508c26ee44117589e3f435b2a028573b02b73bb85be48e7", + "version_timestamp": "2025-06-27T21:36:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-27", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -2, + "workflow_group_number": 1 + }, + { + "id": 157187743, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157187744, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157187739, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141355439, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:59:02Z", + "attachment_id": 5513387913, + "content_type": "application/pdf", + "document_markup_layer_id": 65143218, + "filename": "23 3000 - Wall Louvers Resubmittal.pdf", + "markup_updated_at": "2025-06-27T21:36:02Z", + "state": "outdated", + "updated_at": "2025-06-24T16:59:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHE1T6NF5NP8RXFCXVCEX70?companyId=8089&projectId=2563870&sig=2a9dc7f60537bcef7508c26ee44117589e3f435b2a028573b02b73bb85be48e7", + "version_timestamp": "2025-06-24T16:59:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-05-23", + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": 17, + "workflow_group_number": 0 + }, + { + "id": 157187738, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-23", + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 157187740, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-23", + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 157187741, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-05-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-05-23", + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-23T13:34:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-17T13:16:17Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-09", + "formatted_number": "23 30 00-3", + "issue_date": "2025-05-23", + "last_distributed_submittal": { + "id": 28052930, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439438, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5554956322, + "content_type": "application/pdf", + "filename": "23 30 00-3.1 - Wall Louver-PD_H2MG.pdf", + "source_prostore_file_id": 5554956322, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K051BV3WAA7YKXMXBW102DVY?companyId=8089&projectId=2563870&sig=45bc222e1990d644d47b7bca0b42082035027a4cf5f785aca2f08bb1a6e8661c", + "viewable_document_id": 858624977 + } + ], + "response_name": "Approved", + "submittal_approver_id": 157187749, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T13:16:17Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall Louver (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T13:16:17Z" + }, + { + "id": 63527574, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157301762, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142001455, + "additional_page_count": 0, + "attached_at": "2025-07-08T15:32:53Z", + "attachment_id": 5541886204, + "content_type": "application/pdf", + "document_markup_layer_id": 65493263, + "filename": "05 51 13-4.0 - Metal Pan Stairs-Interior Stair ST-3-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-08T15:32:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNANR89S4T833ES9TN7YMYV?companyId=8089&projectId=2563870&sig=8545f4f77c51df725ba9a19c2fcee1e8166b4502492cff37dbba4798f9fa6065", + "version_timestamp": "2025-07-08T15:32:53Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-02", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": "2025-06-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 4, + "workflow_group_number": 2 + }, + { + "id": 157301760, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141040956, + "additional_page_count": 1, + "attached_at": "2025-06-18T03:04:46Z", + "attachment_id": 5499301480, + "content_type": "application/pdf", + "document_markup_layer_id": 64701268, + "filename": "055113-4.0 -Metal Pan Stairs (Interior Stair ST-3 (SD).pdf", + "markup_updated_at": "2025-06-18T03:07:46Z", + "state": "excluded", + "updated_at": "2025-06-18T03:07:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY0FXRTZM2P6SE39EW0FXM6Z?companyId=8089&projectId=2563870&sig=472656c39d61020b62c2e495474695fbd22208c63b05bd52e7de6367280ba1a4", + "version_timestamp": "2025-06-18T03:07:46Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-25", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 157301761, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157301759, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141040935, + "additional_page_count": 1, + "attached_at": "2025-06-18T03:04:46Z", + "attachment_id": 5499301480, + "content_type": "application/pdf", + "document_markup_layer_id": 64701268, + "filename": "055113-4.0 -Metal Pan Stairs (Interior Stair ST-3 (SD).pdf", + "markup_updated_at": "2025-06-18T03:07:46Z", + "state": "outdated", + "updated_at": "2025-06-18T03:04:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY0FXRTZM2P6SE39EW0FXM6Z?companyId=8089&projectId=2563870&sig=472656c39d61020b62c2e495474695fbd22208c63b05bd52e7de6367280ba1a4", + "version_timestamp": "2025-06-18T03:04:46Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": 5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-27T12:48:28Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-08T20:54:47Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-02", + "formatted_number": "055113-4", + "issue_date": "2025-05-27", + "last_distributed_submittal": { + "id": 27935820, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39265969, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5541886204, + "content_type": "application/pdf", + "filename": "05 51 13-4.0 - Metal Pan Stairs-Interior Stair ST-3-SD_STR.pdf", + "source_prostore_file_id": 5541886204, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNANR89S4T833ES9TN7YMYV?companyId=8089&projectId=2563870&sig=8545f4f77c51df725ba9a19c2fcee1e8166b4502492cff37dbba4798f9fa6065", + "viewable_document_id": 856412730 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 157301762, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please revise and resubmit. Coordination meeting scheduled for 10:30am 7/9/25 to resolve RFI's.
", + "sent_at": "2025-07-08T20:54:47Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Pan Stairs: Interior Stair ST-3 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-08T20:55:09Z" + }, + { + "id": 63565626, + "actual_delivery_date": null, + "approvers": [ + { + "id": 157444979, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142074961, + "additional_page_count": 0, + "attached_at": "2025-07-09T15:24:08Z", + "attachment_id": 5545094768, + "content_type": "application/pdf", + "document_markup_layer_id": 65559273, + "filename": "23 09 00-1.2 - Adjustable Frequency Drive (For Record)_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-09T15:24:08Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQWJF0CD1QT9FW3XWNM1XJT?companyId=8089&projectId=2563870&sig=cb4ca12d0e134cc7e1cd9e710cffb87d8057f4d567e3e48e7041969b599c8b77", + "version_timestamp": "2025-07-09T15:24:08Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-02", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 3 + }, + { + "id": 157444975, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141807771, + "additional_page_count": 0, + "attached_at": "2025-07-02T20:44:31Z", + "attachment_id": 5532822131, + "content_type": "application/pdf", + "document_markup_layer_id": 65332592, + "filename": "230900-01-2 - ACR Sbtl Review - Variable Frequency Drives.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-02T20:44:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ6E45RF637NRCZ9SNZ6F0M2?companyId=8089&projectId=2563870&sig=8bb2ff2d52ff97260cb0c29c22d3da4e97a95befbd2df74fc37ca3c23cce00e6", + "version_timestamp": "2025-07-02T20:44:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-06-27", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 157444978, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157444977, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157444976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-27", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 157444973, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141591357, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:59:47Z", + "attachment_id": 5513390471, + "content_type": "application/pdf", + "document_markup_layer_id": 65143202, + "filename": "23 0900 - Variable Frequency Drives Submittal (Pumps+EF-5-9).pdf", + "markup_updated_at": "2025-06-27T21:34:34Z", + "state": "excluded", + "updated_at": "2025-06-27T21:34:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHE357D540K1QFCFF538RAV?companyId=8089&projectId=2563870&sig=7448ec5e002ffc21a8a216d6c18beeab11f7807f604734572292759995c3dee2", + "version_timestamp": "2025-06-27T21:34:34Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-27", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -2, + "workflow_group_number": 1 + }, + { + "id": 157444974, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 157444970, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141355518, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:59:47Z", + "attachment_id": 5513390471, + "content_type": "application/pdf", + "document_markup_layer_id": 65143202, + "filename": "23 0900 - Variable Frequency Drives Submittal (Pumps+EF-5-9).pdf", + "markup_updated_at": "2025-06-27T21:34:34Z", + "state": "outdated", + "updated_at": "2025-06-24T16:59:47Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHE357D540K1QFCFF538RAV?companyId=8089&projectId=2563870&sig=7448ec5e002ffc21a8a216d6c18beeab11f7807f604734572292759995c3dee2", + "version_timestamp": "2025-06-24T16:59:47Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": 14, + "workflow_group_number": 0 + }, + { + "id": 157444972, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 157444971, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 157444969, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-05-28T14:02:07Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-09T17:51:41Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-09", + "formatted_number": "23 09 00-1", + "issue_date": "2025-05-28", + "last_distributed_submittal": { + "id": 27950205, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39287634, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5545094768, + "content_type": "application/pdf", + "filename": "23 09 00-1.2 - Adjustable Frequency Drive (For Record)_ACR_H2MG.pdf", + "source_prostore_file_id": 5545094768, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQWJF0CD1QT9FW3XWNM1XJT?companyId=8089&projectId=2563870&sig=cb4ca12d0e134cc7e1cd9e710cffb87d8057f4d567e3e48e7041969b599c8b77", + "viewable_document_id": 856943800 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 157444979, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-07-09T17:51:41Z" + }, + "lead_time": 75, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 10946327, + "name": "Maried Salinas" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037810, + "current_revision_id": 44088322, + "description": "Instrumentation and Control for HVAC", + "label": "23 09 00 - Instrumentation and Control for HVAC", + "number": "23 09 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023712 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Adjustable Frequency Drive (For Record)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-09T17:51:41Z" + }, + { + "id": 63728275, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158028648, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140563895, + "additional_page_count": 0, + "attached_at": "2025-06-09T17:11:02Z", + "attachment_id": 5479440568, + "content_type": "application/pdf", + "document_markup_layer_id": 64308738, + "filename": "23 34 00-3.1 - Intake & Relief Hoods-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-09T17:11:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXATRCRFT3JM1HPSM1S60XKN?companyId=8089&projectId=2563870&sig=37bf9a43878e1da7d332cef29db170897ac2bcc6bd5b2584657c739c6b0e455d", + "version_timestamp": "2025-06-09T17:11:02Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 158028649, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-09", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158028650, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158028643, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140561403, + "additional_page_count": 0, + "attached_at": "2025-06-09T16:46:45Z", + "attachment_id": 5479347090, + "content_type": "application/pdf", + "document_markup_layer_id": 64305339, + "filename": "233400-03-01 - ACR Sbtl Review - Intake & Relief Hoods.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-09T16:46:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXASCFBYMXQ3F8921CHK715X?companyId=8089&projectId=2563870&sig=db690d51269f061aa4833918be5e05b404b460778e8883212df8a82d45c908c1", + "version_timestamp": "2025-06-09T16:46:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158028647, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158028646, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158028645, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158028644, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158028640, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140299879, + "additional_page_count": 1, + "attached_at": "2025-06-03T20:53:39Z", + "attachment_id": 5468141045, + "content_type": "application/pdf", + "document_markup_layer_id": 64091198, + "filename": "23 3400 - Intake & Relief Hoods Submittal - AAN (UPDATED).pdf", + "markup_updated_at": "2025-06-03T20:56:07Z", + "state": "excluded", + "updated_at": "2025-06-03T20:56:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVS484XNSV4GCNEVAX840R4?companyId=8089&projectId=2563870&sig=5e517e80bbec7db9079614ca60415b25c17e3a9ccacf5306b0ad5f676ca14f7a", + "version_timestamp": "2025-06-03T20:56:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158028641, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158028642, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158028637, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140299647, + "additional_page_count": 1, + "attached_at": "2025-06-03T20:53:39Z", + "attachment_id": 5468141045, + "content_type": "application/pdf", + "document_markup_layer_id": 64091198, + "filename": "23 3400 - Intake & Relief Hoods Submittal - AAN (UPDATED).pdf", + "markup_updated_at": "2025-06-03T20:56:07Z", + "state": "outdated", + "updated_at": "2025-06-03T20:53:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVS484XNSV4GCNEVAX840R4?companyId=8089&projectId=2563870&sig=5e517e80bbec7db9079614ca60415b25c17e3a9ccacf5306b0ad5f676ca14f7a", + "version_timestamp": "2025-06-03T20:53:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158028639, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158028638, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158028636, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T20:53:24Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-10T16:02:12Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "23 34 00-3", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27570319, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38726241, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5479440568, + "content_type": "application/pdf", + "filename": "23 34 00-3.1 - Intake & Relief Hoods-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5479440568, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXATRCRFT3JM1HPSM1S60XKN?companyId=8089&projectId=2563870&sig=37bf9a43878e1da7d332cef29db170897ac2bcc6bd5b2584657c739c6b0e455d", + "viewable_document_id": 845588354 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158028648, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-10T16:02:12Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037818, + "current_revision_id": 45441239, + "description": "Fans", + "label": "23 34 00 - Fans", + "number": "23 34 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331506 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Intake & Relief Hoods (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-10T16:02:12Z" + }, + { + "id": 63728544, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158029388, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158029389, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-09", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158029390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158029385, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140559258, + "additional_page_count": 0, + "attached_at": "2025-06-09T16:25:17Z", + "attachment_id": 5479272026, + "content_type": "application/pdf", + "document_markup_layer_id": 64302846, + "filename": "23 05 19-1.1 - Gauges, Thermometers and Flow Meters-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-09T16:25:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAR4S2P227Y1K52Z7TXDVND?companyId=8089&projectId=2563870&sig=1ef8f7f39ef66a7d25780ef3230e0c1f2a6b94c27bdbbf07dcb67e2b6308a88a", + "version_timestamp": "2025-06-09T16:25:17Z" + } + ], + "comment": "Please see attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158029387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158029386, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158029384, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158029383, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158029380, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140300338, + "additional_page_count": 1, + "attached_at": "2025-06-03T20:59:06Z", + "attachment_id": 5468162587, + "content_type": "application/pdf", + "document_markup_layer_id": 64091496, + "filename": "23 0519 - Gauges & Thermometers Resubmittal.pdf", + "markup_updated_at": "2025-06-03T21:00:43Z", + "state": "excluded", + "updated_at": "2025-06-03T21:00:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVSE7JB4Y0SZF2JK38KD7YX?companyId=8089&projectId=2563870&sig=2cdc200a2ad95ec5562cdcf4021a5229df4285357d71b0127825a166ce385c07", + "version_timestamp": "2025-06-03T21:00:43Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158029381, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158029382, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158029377, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140300194, + "additional_page_count": 1, + "attached_at": "2025-06-03T20:59:06Z", + "attachment_id": 5468162587, + "content_type": "application/pdf", + "document_markup_layer_id": 64091496, + "filename": "23 0519 - Gauges & Thermometers Resubmittal.pdf", + "markup_updated_at": "2025-06-03T21:00:43Z", + "state": "outdated", + "updated_at": "2025-06-03T20:59:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVSE7JB4Y0SZF2JK38KD7YX?companyId=8089&projectId=2563870&sig=2cdc200a2ad95ec5562cdcf4021a5229df4285357d71b0127825a166ce385c07", + "version_timestamp": "2025-06-03T20:59:06Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158029379, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158029378, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158029376, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T20:58:51Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-10T13:22:41Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "23 05 19-1", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27565353, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38719252, + "comment": "Please see attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5479272026, + "content_type": "application/pdf", + "filename": "23 05 19-1.1 - Gauges, Thermometers and Flow Meters-PD_H2MG.pdf", + "source_prostore_file_id": 5479272026, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAR4S2P227Y1K52Z7TXDVND?companyId=8089&projectId=2563870&sig=1ef8f7f39ef66a7d25780ef3230e0c1f2a6b94c27bdbbf07dcb67e2b6308a88a", + "viewable_document_id": 845557635 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 158029385, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-10T13:22:41Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037800, + "current_revision_id": 45441195, + "description": "GAUGES, THERMOMETERS AND FLOW METERS", + "label": "23 05 19 - GAUGES, THERMOMETERS AND FLOW METERS", + "number": "23 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331444 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gauges, Thermometers and Flow Meters (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-09T14:53:59Z" + }, + { + "id": 63729763, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158034422, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140694629, + "additional_page_count": 0, + "attached_at": "2025-06-11T13:48:21Z", + "attachment_id": 5484799344, + "content_type": "application/pdf", + "document_markup_layer_id": 64444538, + "filename": "23 30 00-4.0 - Level 1 Area C HVAC Duct-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-11T13:48:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFKYFP1BXS1QPYBESB0G6KK?companyId=8089&projectId=2563870&sig=0b6d4b9f79a25ec451f3f0f1f20328e1bc3fe9be13e9f4e63c63d4ad076aafad", + "version_timestamp": "2025-06-11T13:48:21Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 158034418, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-08", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158034421, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158034420, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158034419, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158034415, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140303104, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:31:15Z", + "attachment_id": 5468270392, + "content_type": "application/pdf", + "document_markup_layer_id": 64093531, + "filename": "51005_Houston ES - LVL 1 Area C HVAC Duct Shop Dwg 5-16-25.pdf", + "markup_updated_at": "2025-06-03T21:33:24Z", + "state": "excluded", + "updated_at": "2025-06-03T21:33:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVV91E067BR0F6W345N3BBY?companyId=8089&projectId=2563870&sig=93fc59a66e38a449c91ed0afb54667fefd55f54c78bbd6c7594e1c9a88da5bd8", + "version_timestamp": "2025-06-03T21:33:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158034416, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158034417, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158034412, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140303003, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:31:15Z", + "attachment_id": 5468270392, + "content_type": "application/pdf", + "document_markup_layer_id": 64093531, + "filename": "51005_Houston ES - LVL 1 Area C HVAC Duct Shop Dwg 5-16-25.pdf", + "markup_updated_at": "2025-06-03T21:33:24Z", + "state": "outdated", + "updated_at": "2025-06-03T21:31:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVV91E067BR0F6W345N3BBY?companyId=8089&projectId=2563870&sig=93fc59a66e38a449c91ed0afb54667fefd55f54c78bbd6c7594e1c9a88da5bd8", + "version_timestamp": "2025-06-03T21:31:14Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158034414, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158034413, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158034411, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T21:30:59Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-13T14:30:15Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "23 30 00-4", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27621059, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38801243, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5484799344, + "content_type": "application/pdf", + "filename": "23 30 00-4.0 - Level 1 Area C HVAC Duct-SD_H2MG.pdf", + "source_prostore_file_id": 5484799344, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFKYFP1BXS1QPYBESB0G6KK?companyId=8089&projectId=2563870&sig=0b6d4b9f79a25ec451f3f0f1f20328e1bc3fe9be13e9f4e63c63d4ad076aafad", + "viewable_document_id": 846491679 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158034422, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-13T14:30:15Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Level 1 Area C HVAC Duct (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-08T13:33:22Z" + }, + { + "id": 63729970, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158035128, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140558547, + "additional_page_count": 0, + "attached_at": "2025-06-09T16:18:45Z", + "attachment_id": 5479243376, + "content_type": "application/pdf", + "document_markup_layer_id": 64303410, + "filename": "23 30 00-5.0 - Level 1 Area A HVAC Duct-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-09T16:18:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAQRKHJM49KSZ5958BV7XA3?companyId=8089&projectId=2563870&sig=c46c5c3619cc46fbb02287f45e876f998a10208c048d4c7aabc1f668555c3458", + "version_timestamp": "2025-06-09T16:18:45Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 158035124, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-08", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158035127, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158035126, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158035125, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158035121, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140304040, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:44:25Z", + "attachment_id": 5468308653, + "content_type": "application/pdf", + "document_markup_layer_id": 64094279, + "filename": "51005_Houston ES - LVL 1 Area A HVAC Duct Shop Dwg 5-21-25.pdf", + "markup_updated_at": "2025-06-03T21:46:37Z", + "state": "excluded", + "updated_at": "2025-06-03T21:46:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVW0DAMEGJ1F1ZE3PTM99YH?companyId=8089&projectId=2563870&sig=435f74d345892e897bd96be3252fa9d01d2d179486867f23d1ac31429d3b67f1", + "version_timestamp": "2025-06-03T21:46:37Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158035122, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158035123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158035118, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140303927, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:44:25Z", + "attachment_id": 5468308653, + "content_type": "application/pdf", + "document_markup_layer_id": 64094279, + "filename": "51005_Houston ES - LVL 1 Area A HVAC Duct Shop Dwg 5-21-25.pdf", + "markup_updated_at": "2025-06-03T21:46:37Z", + "state": "outdated", + "updated_at": "2025-06-03T21:44:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVW0DAMEGJ1F1ZE3PTM99YH?companyId=8089&projectId=2563870&sig=435f74d345892e897bd96be3252fa9d01d2d179486867f23d1ac31429d3b67f1", + "version_timestamp": "2025-06-03T21:44:25Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158035120, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158035119, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158035117, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T21:36:57Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-10T13:14:24Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "23 30 00-5", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27565091, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38718876, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5479243376, + "content_type": "application/pdf", + "filename": "23 30 00-5.0 - Level 1 Area A HVAC Duct-SD_H2MG.pdf", + "source_prostore_file_id": 5479243376, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAQRKHJM49KSZ5958BV7XA3?companyId=8089&projectId=2563870&sig=c46c5c3619cc46fbb02287f45e876f998a10208c048d4c7aabc1f668555c3458", + "viewable_document_id": 845554050 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158035128, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-10T13:14:24Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Level 1 Area A HVAC Duct (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-10T13:14:24Z" + }, + { + "id": 63730305, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158036455, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141004193, + "additional_page_count": 0, + "attached_at": "2025-06-17T17:24:03Z", + "attachment_id": 5497860591, + "content_type": "application/pdf", + "document_markup_layer_id": 64671760, + "filename": "23 21 13.02-1.0 - Level 1 Area C Piping-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-17T17:24:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZEP6TF9GG4AVRDVMF541YJ?companyId=8089&projectId=2563870&sig=d09b6196d65995d71f81463c2a1f4b911cccea282544843b2cbad35125fb6dd4", + "version_timestamp": "2025-06-17T17:24:03Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 3 + }, + { + "id": 158036451, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-08", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158036454, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158036453, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158036452, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158036448, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140304505, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:49:26Z", + "attachment_id": 5468322529, + "content_type": "application/pdf", + "document_markup_layer_id": 64094616, + "filename": "51005_Houston ES - LVL 1 Area C HVAC Piping Shop Dwg 5-5-25_R1.pdf", + "markup_updated_at": "2025-06-03T21:53:00Z", + "state": "excluded", + "updated_at": "2025-06-03T21:53:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVWA90B1FZNPYYMCKGWP7QP?companyId=8089&projectId=2563870&sig=7aacb2631085e6ecc390c500780b51f2ab92c8246901d67bbb54f8c3ced6b9f8", + "version_timestamp": "2025-06-03T21:53:00Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158036449, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158036450, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158036445, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140304299, + "additional_page_count": 1, + "attached_at": "2025-06-03T21:49:26Z", + "attachment_id": 5468322529, + "content_type": "application/pdf", + "document_markup_layer_id": 64094616, + "filename": "51005_Houston ES - LVL 1 Area C HVAC Piping Shop Dwg 5-5-25_R1.pdf", + "markup_updated_at": "2025-06-03T21:53:00Z", + "state": "outdated", + "updated_at": "2025-06-03T21:49:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVWA90B1FZNPYYMCKGWP7QP?companyId=8089&projectId=2563870&sig=7aacb2631085e6ecc390c500780b51f2ab92c8246901d67bbb54f8c3ced6b9f8", + "version_timestamp": "2025-06-03T21:49:26Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158036447, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158036446, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158036444, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T21:49:03Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-17T17:36:15Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "23 21 13.02-1", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27666705, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38868649, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5497860591, + "content_type": "application/pdf", + "filename": "23 21 13.02-1.0 - Level 1 Area C Piping-SD_H2MG.pdf", + "source_prostore_file_id": 5497860591, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZEP6TF9GG4AVRDVMF541YJ?companyId=8089&projectId=2563870&sig=d09b6196d65995d71f81463c2a1f4b911cccea282544843b2cbad35125fb6dd4", + "viewable_document_id": 848750229 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158036455, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-17T17:36:15Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096827, + "current_revision_id": 45441224, + "description": "PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "label": "23 21 13.02 - PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "number": "23 21 13.02", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331487 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Level 1 Area C Piping (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-17T17:36:15Z" + }, + { + "id": 63730562, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158037302, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140546327, + "additional_page_count": 0, + "attached_at": "2025-06-09T14:30:51Z", + "attachment_id": 5478763576, + "content_type": "application/pdf", + "document_markup_layer_id": 64291121, + "filename": "26 22 13-3.2 - Low volt Transformers-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-09T14:30:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAHJMZ56973PBEEKQGK8H8E?companyId=8089&projectId=2563870&sig=5be9d39a6b81db3b77f7213014267305057779939f31da8765e47b294c90e5aa", + "version_timestamp": "2025-06-09T14:30:51Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-06-09", + "sent_date": "2025-06-04", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 158037303, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-04", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158037304, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-04", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158037300, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-04", + "sent_date": "2025-06-03", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 158037301, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158037299, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158037296, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140305986, + "additional_page_count": 1, + "attached_at": "2025-06-03T22:01:35Z", + "attachment_id": 5468353001, + "content_type": "application/pdf", + "document_markup_layer_id": 64095027, + "filename": "26 22 13 - 3.0 - Low Volt Transformers (PD).pdf", + "markup_updated_at": "2025-06-03T22:02:50Z", + "state": "excluded", + "updated_at": "2025-06-03T22:02:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVX0JSJ7XVT69GNDB03H46F?companyId=8089&projectId=2563870&sig=5c3794551269663cded1c125a9f5b6b20f3919583785483ee064cfb80d6a265c", + "version_timestamp": "2025-06-03T22:02:50Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-06-03", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 158037297, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158037298, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158037293, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140305906, + "additional_page_count": 1, + "attached_at": "2025-06-03T22:01:35Z", + "attachment_id": 5468353001, + "content_type": "application/pdf", + "document_markup_layer_id": 64095027, + "filename": "26 22 13 - 3.0 - Low Volt Transformers (PD).pdf", + "markup_updated_at": "2025-06-03T22:02:50Z", + "state": "outdated", + "updated_at": "2025-06-03T22:01:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVX0JSJ7XVT69GNDB03H46F?companyId=8089&projectId=2563870&sig=5c3794551269663cded1c125a9f5b6b20f3919583785483ee064cfb80d6a265c", + "version_timestamp": "2025-06-03T22:01:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158037295, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158037294, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T21:59:47Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-09T15:09:10Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "262213-3", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27547952, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38693385, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5478763576, + "content_type": "application/pdf", + "filename": "26 22 13-3.2 - Low volt Transformers-PD_H2MG.pdf", + "source_prostore_file_id": 5478763576, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXAHJMZ56973PBEEKQGK8H8E?companyId=8089&projectId=2563870&sig=5be9d39a6b81db3b77f7213014267305057779939f31da8765e47b294c90e5aa", + "viewable_document_id": 845472410 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 158037302, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-06-09T15:09:10Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36586613, + "current_revision_id": 44794161, + "description": "High Efficiency Dry-type Distribution XFMR", + "label": "262213 - High Efficiency Dry-type Distribution XFMR", + "number": "262213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low volt Transformers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-14T13:38:11Z" + }, + { + "id": 63730865, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158038393, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140696340, + "additional_page_count": 0, + "attached_at": "2025-06-11T14:05:38Z", + "attachment_id": 5484847313, + "content_type": "application/pdf", + "document_markup_layer_id": 64507090, + "filename": "22 63 13-3.0 - Gas Regulator-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-11T14:05:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFMMHNCST69HXY2WPXMAFX2?companyId=8089&projectId=2563870&sig=644c9fddab96055e2a5db35da48e76d8307b50e3bb2edd13f175771a5252b3de", + "version_timestamp": "2025-06-11T14:05:38Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-11", + "sent_date": "2025-06-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 158038394, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-08", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158038395, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-08", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158038388, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140524442, + "additional_page_count": 0, + "attached_at": "2025-06-08T17:32:24Z", + "attachment_id": 5477751307, + "content_type": "application/pdf", + "document_markup_layer_id": 64269475, + "filename": "226313-03-00 - ACR Sbtl Review - Gas Regulators.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-08T17:32:24Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JX89JZMDAB112904Y9W63ERC?companyId=8089&projectId=2563870&sig=f91768a1fa1fbecfbb7ed80394c70310d67f898114af15258a9c81122ea67d83", + "version_timestamp": "2025-06-08T17:32:24Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-08", + "sent_date": "2025-06-03", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -1, + "workflow_group_number": 2 + }, + { + "id": 158038392, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13081088, + "name": "Victor Taylor" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158038391, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158038390, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158038389, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158038386, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140306705, + "additional_page_count": 1, + "attached_at": "2025-06-03T22:14:25Z", + "attachment_id": 5468384948, + "content_type": "application/pdf", + "document_markup_layer_id": 64095534, + "filename": "22 63 13 - 3.0 - Gas Regulator.pdf", + "markup_updated_at": "2025-06-03T22:15:54Z", + "state": "excluded", + "updated_at": "2025-06-03T22:15:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVXR48CX3FRK9HRSV58HGF5?companyId=8089&projectId=2563870&sig=9c524dc5d262ff693b9551aa9b62d9fb61aa6de65d3d13fddc9bc167d5ac7fa6", + "version_timestamp": "2025-06-03T22:15:54Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": "2025-06-03", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158038387, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-03", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158038385, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140306632, + "additional_page_count": 1, + "attached_at": "2025-06-03T22:14:25Z", + "attachment_id": 5468384948, + "content_type": "application/pdf", + "document_markup_layer_id": 64095534, + "filename": "22 63 13 - 3.0 - Gas Regulator.pdf", + "markup_updated_at": "2025-06-03T22:15:54Z", + "state": "outdated", + "updated_at": "2025-06-03T22:14:25Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JWVXR48CX3FRK9HRSV58HGF5?companyId=8089&projectId=2563870&sig=9c524dc5d262ff693b9551aa9b62d9fb61aa6de65d3d13fddc9bc167d5ac7fa6", + "version_timestamp": "2025-06-03T22:14:25Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-03", + "sent_date": null, + "user": { + "id": 6914369, + "name": "David Phelps" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 158038384, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12179402, + "name": "Mitch Maxey" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158038383, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4011731, + "name": "Joshua Churchill" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-03T22:13:38Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-12T21:29:48Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-16", + "formatted_number": "22 63 13-3", + "issue_date": "2025-06-03", + "last_distributed_submittal": { + "id": 27614121, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38789729, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5484847313, + "content_type": "application/pdf", + "filename": "22 63 13-3.0 - Gas Regulator-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5484847313, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXFMMHNCST69HXY2WPXMAFX2?companyId=8089&projectId=2563870&sig=644c9fddab96055e2a5db35da48e76d8307b50e3bb2edd13f175771a5252b3de", + "viewable_document_id": 846502597 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158038393, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4011731, + "initials": "JC", + "name": "Joshua Churchill", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 6914369, + "initials": "DP", + "name": "David Phelps", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12179402, + "initials": "MM", + "name": "Mitch Maxey", + "vendor_name": "MJ Mechanical, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13081088, + "initials": "VT", + "name": "Victor Taylor", + "vendor_name": "Austin ISD" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-12T21:29:48Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 13211938, + "name": "Jason George" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 32690355, + "name": "FGM Architects Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037793, + "current_revision_id": 45441181, + "description": "GAS PIPING AND APPURTENANCES", + "label": "22 63 13 - GAS PIPING AND APPURTENANCES", + "number": "22 63 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331434 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2783478, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "022.A", + "specification_section_id": null, + "submittal_ids": [ + 60219543, + 63023830, + 62257732, + 62037962, + 61713579, + 61589181, + 60214037, + 60214417, + 60213897, + 60219302, + 63730865, + 60214352, + 60219393, + 63012213, + 60219076, + 60219162, + 60214018, + 60219759, + 60219694, + 60218967, + 60219420 + ], + "title": "MJ Mechanical (Plumbing) Action Submittals", + "updated_at": "2025-02-20T20:33:19Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gas Regulator (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-12T21:29:48Z" + }, + { + "id": 63888991, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158578308, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 158578306, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140765025, + "additional_page_count": 0, + "attached_at": "2025-06-12T13:58:21Z", + "attachment_id": 5487913871, + "content_type": "application/pdf", + "document_markup_layer_id": 64538929, + "filename": "26 05 29-2.0 - Metal Framing and Supports_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-12T13:58:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXJ6XXRM101ADBSQETTY5RD3?companyId=8089&projectId=2563870&sig=be5ce69634f44579a93063ccacfc647e183b5a07b2ac05f79030af664557515d", + "version_timestamp": "2025-06-12T13:58:21Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-12", + "sent_date": "2025-06-10", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -8, + "workflow_group_number": 2 + }, + { + "id": 158578307, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-10", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158578305, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-10", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158578302, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140638687, + "additional_page_count": 1, + "attached_at": "2025-06-10T15:46:57Z", + "attachment_id": 5482257196, + "content_type": "application/pdf", + "document_markup_layer_id": 64371436, + "filename": "26 05 29-2.0 - Metal Framing and Supports.pdf", + "markup_updated_at": "2025-06-10T16:55:09Z", + "state": "excluded", + "updated_at": "2025-06-10T16:55:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXD8BFFS87N2857Q0761G0F7?companyId=8089&projectId=2563870&sig=278ac21b022d1abdec7e11e718e84043430467600029884ba6b1929efc8ba35d", + "version_timestamp": "2025-06-10T16:55:09Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-06-10", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": "2025-06-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 158578303, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158578304, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-10", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-10", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158578299, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140631847, + "additional_page_count": 1, + "attached_at": "2025-06-10T15:46:57Z", + "attachment_id": 5482257196, + "content_type": "application/pdf", + "document_markup_layer_id": 64371436, + "filename": "26 05 29-2.0 - Metal Framing and Supports.pdf", + "markup_updated_at": "2025-06-10T16:55:09Z", + "state": "outdated", + "updated_at": "2025-06-10T15:46:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXD8BFFS87N2857Q0761G0F7?companyId=8089&projectId=2563870&sig=278ac21b022d1abdec7e11e718e84043430467600029884ba6b1929efc8ba35d", + "version_timestamp": "2025-06-10T15:46:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158578301, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158578300, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-10T15:44:33Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-13T16:22:12Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-19", + "formatted_number": "26 05 29-2", + "issue_date": "2025-06-10", + "last_distributed_submittal": { + "id": 27624246, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 38805571, + "comment": null, + "distributed_attachments": [ + { + "id": 5487913871, + "content_type": "application/pdf", + "filename": "26 05 29-2.0 - Metal Framing and Supports_H2MG.pdf", + "source_prostore_file_id": 5487913871, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXJ6XXRM101ADBSQETTY5RD3?companyId=8089&projectId=2563870&sig=be5ce69634f44579a93063ccacfc647e183b5a07b2ac05f79030af664557515d", + "viewable_document_id": 847021090 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 158578306, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "please see notes about caddy clips
", + "sent_at": "2025-06-13T16:22:12Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037833, + "current_revision_id": 45441282, + "description": "METAL FRAMING AND SUPPORTS", + "label": "26 05 29 - METAL FRAMING AND SUPPORTS", + "number": "26 05 29", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331564 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Framing and Supports ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-13T16:22:12Z" + }, + { + "id": 63929663, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158919444, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142214004, + "additional_page_count": 0, + "attached_at": "2025-07-11T15:11:22Z", + "attachment_id": 5550924295, + "content_type": "application/pdf", + "document_markup_layer_id": 65692347, + "filename": "23 21 13.02-2.0 - Level 1 Area A HVAC piping-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T15:11:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX0M851ZYYJMY311WJ7BZRH?companyId=8089&projectId=2563870&sig=200ec598f26819ea7b05a24adfc5c62148dca34ca7a0fdfc9547e91962b59c2c", + "version_timestamp": "2025-07-11T15:11:22Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-03", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-06-26", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 6, + "workflow_group_number": 3 + }, + { + "id": 158919440, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "ACR has no comments. For record only.\u00a0", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-26", + "sent_date": "2025-06-13", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 4, + "workflow_group_number": 2 + }, + { + "id": 158919443, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158919442, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158919441, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158919437, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140863290, + "additional_page_count": 1, + "attached_at": "2025-06-13T14:33:23Z", + "attachment_id": 5490782905, + "content_type": "application/pdf", + "document_markup_layer_id": 64552226, + "filename": "23 21 13.02 \u2013 2.0 \u2013 Level 1 Area A HVAC piping (SD).pdf", + "markup_updated_at": "2025-06-13T19:32:40Z", + "state": "excluded", + "updated_at": "2025-06-13T19:32:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMVAYMXW8G0R479MWWVXB0Y?companyId=8089&projectId=2563870&sig=e19e3e45a3c6ff07f6fcc7cdbb0d7c09d9a67753ac319df827026244dbc413ee", + "version_timestamp": "2025-06-13T19:32:40Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158919438, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158919439, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158919433, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140833614, + "additional_page_count": 1, + "attached_at": "2025-06-13T14:33:23Z", + "attachment_id": 5490782905, + "content_type": "application/pdf", + "document_markup_layer_id": 64552226, + "filename": "23 21 13.02 \u2013 2.0 \u2013 Level 1 Area A HVAC piping (SD).pdf", + "markup_updated_at": "2025-06-13T19:32:40Z", + "state": "outdated", + "updated_at": "2025-06-13T14:33:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMVAYMXW8G0R479MWWVXB0Y?companyId=8089&projectId=2563870&sig=e19e3e45a3c6ff07f6fcc7cdbb0d7c09d9a67753ac319df827026244dbc413ee", + "version_timestamp": "2025-06-13T14:33:23Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158919436, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158919435, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158919434, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-11T17:37:27Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-11T18:57:01Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-03", + "formatted_number": "23 21 13.02-2", + "issue_date": "2025-06-11", + "last_distributed_submittal": { + "id": 27986262, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39340087, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5550924295, + "content_type": "application/pdf", + "filename": "23 21 13.02-2.0 - Level 1 Area A HVAC piping-SD_H2MG.pdf", + "source_prostore_file_id": 5550924295, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX0M851ZYYJMY311WJ7BZRH?companyId=8089&projectId=2563870&sig=200ec598f26819ea7b05a24adfc5c62148dca34ca7a0fdfc9547e91962b59c2c", + "viewable_document_id": 857953189 + } + ], + "response_name": "Approved", + "submittal_approver_id": 158919444, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T18:57:01Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096827, + "current_revision_id": 45441224, + "description": "PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "label": "23 21 13.02 - PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "number": "23 21 13.02", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331487 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Level 1 Area A HVAC piping(SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-11T18:57:01Z" + }, + { + "id": 63995976, + "actual_delivery_date": null, + "approvers": [ + { + "id": 158933730, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141412146, + "additional_page_count": 0, + "attached_at": "2025-06-25T14:17:59Z", + "attachment_id": 5515787490, + "content_type": "application/pdf", + "document_markup_layer_id": 65012010, + "filename": "23 01 00-4.0 - Area B Roof Opening Coordination Drawings (For Record)_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-25T14:17:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKQ6TT5PBX7VF9RRQKNWH4G?companyId=8089&projectId=2563870&sig=4f59b20165037fe9444632b7a23947d225309778a829e05f8fc666b65f9cbfe0", + "version_timestamp": "2025-06-25T14:17:59Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-25", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 158933726, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "ACR is not reviewing. For record only.\u00a0", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-13", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 158933729, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158933728, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158933727, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 158933723, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140863096, + "additional_page_count": 1, + "attached_at": "2025-06-13T15:51:13Z", + "attachment_id": 5491116346, + "content_type": "application/pdf", + "document_markup_layer_id": 64552098, + "filename": "51005_Houston ES - Area B Roof Opening Shop Dwg 6-11-25.pdf", + "markup_updated_at": "2025-06-13T19:31:02Z", + "state": "excluded", + "updated_at": "2025-06-13T19:31:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMZSQ696A4XF7W35QMS8Q6Y?companyId=8089&projectId=2563870&sig=6a0506006396899e3309d9508bc934425b03291964c230979d97bf54dc730508", + "version_timestamp": "2025-06-13T19:31:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": "2025-06-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 158933724, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158933725, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-13", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 158933721, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140841879, + "additional_page_count": 1, + "attached_at": "2025-06-13T15:51:13Z", + "attachment_id": 5491116346, + "content_type": "application/pdf", + "document_markup_layer_id": 64552098, + "filename": "51005_Houston ES - Area B Roof Opening Shop Dwg 6-11-25.pdf", + "markup_updated_at": "2025-06-13T19:31:02Z", + "state": "outdated", + "updated_at": "2025-06-13T15:51:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXMZSQ696A4XF7W35QMS8Q6Y?companyId=8089&projectId=2563870&sig=6a0506006396899e3309d9508bc934425b03291964c230979d97bf54dc730508", + "version_timestamp": "2025-06-13T15:51:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-13", + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 158933720, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158933718, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 158933716, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-13T15:47:54Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-06-27T21:33:58Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-01", + "formatted_number": "23 01 00-4", + "issue_date": "2025-06-13", + "last_distributed_submittal": { + "id": 27818054, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39092322, + "comment": null, + "distributed_attachments": [ + { + "id": 5515787490, + "content_type": "application/pdf", + "filename": "23 01 00-4.0 - Area B Roof Opening Coordination Drawings (For Record)_H2MG.pdf", + "source_prostore_file_id": 5515787490, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYKQ6TT5PBX7VF9RRQKNWH4G?companyId=8089&projectId=2563870&sig=4f59b20165037fe9444632b7a23947d225309778a829e05f8fc666b65f9cbfe0", + "viewable_document_id": 852000077 + } + ], + "response_name": "For Record Only", + "submittal_approver_id": 158933730, + "submittal_response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "submittal_response_id": 23348894, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-27T21:33:58Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 2026297, + "name": "David Schad" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037798, + "current_revision_id": 45441182, + "description": "COMMISSIONING OF MECHANICAL SYSTEMS", + "label": "23 01 00 - COMMISSIONING OF MECHANICAL SYSTEMS", + "number": "23 01 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331437 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B Roof Opening Coordination Drawings (For Record)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-27T21:33:58Z" + }, + { + "id": 64040981, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159081459, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141382157, + "additional_page_count": 0, + "attached_at": "2025-06-24T21:04:52Z", + "attachment_id": 5514419108, + "content_type": "application/pdf", + "document_markup_layer_id": 65001755, + "filename": "23 36 16-1.1 - Air Terminal Units (Single Duct)-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-06-24T21:04:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHW3FYTYBZJ2MVJGSG93BFF?companyId=8089&projectId=2563870&sig=3c6db3a1cfcb8d114114de7cfda1f3466ac69ca3b09c7352b3d9381447d88780", + "version_timestamp": "2025-06-24T21:04:52Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 159081460, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 159081461, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 159081454, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141350089, + "additional_page_count": 0, + "attached_at": "2025-06-24T16:03:00Z", + "attachment_id": 5513179458, + "content_type": "application/pdf", + "document_markup_layer_id": 64961766, + "filename": "233616-01-01 - ACR Sbtl Review - Air Terminal Units.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-24T16:03:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHASHPJ3TBKR89VS6TGMK0D?companyId=8089&projectId=2563870&sig=f03c5d12ce0c6f20160ff443e21320d40c91f961f044e3df39edde6de77e0393", + "version_timestamp": "2025-06-24T16:03:00Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-16", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 159081458, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159081457, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159081456, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159081455, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159081451, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140932271, + "additional_page_count": 1, + "attached_at": "2025-06-16T18:21:05Z", + "attachment_id": 5494985698, + "content_type": "application/pdf", + "document_markup_layer_id": 64611212, + "filename": "23 3616 - Single Duct VAV Boxes Resubmittal.pdf", + "markup_updated_at": "2025-06-16T18:22:41Z", + "state": "excluded", + "updated_at": "2025-06-16T18:22:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWZJ8XSM1HBGQJKEB2KCEY0?companyId=8089&projectId=2563870&sig=6f9c458734e2d38fbe3a29be3410ee7aec163706701daaf9052ecb6fd0ebd00a", + "version_timestamp": "2025-06-16T18:22:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": "2025-06-16", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159081452, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159081453, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-16", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159081450, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140932083, + "additional_page_count": 1, + "attached_at": "2025-06-16T18:21:05Z", + "attachment_id": 5494985698, + "content_type": "application/pdf", + "document_markup_layer_id": 64611212, + "filename": "23 3616 - Single Duct VAV Boxes Resubmittal.pdf", + "markup_updated_at": "2025-06-16T18:22:41Z", + "state": "outdated", + "updated_at": "2025-06-16T18:21:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXWZJ8XSM1HBGQJKEB2KCEY0?companyId=8089&projectId=2563870&sig=6f9c458734e2d38fbe3a29be3410ee7aec163706701daaf9052ecb6fd0ebd00a", + "version_timestamp": "2025-06-16T18:21:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-23", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-16", + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-16T18:20:54Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-06-27T18:24:24Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-01", + "formatted_number": "23 36 16-1", + "issue_date": "2025-06-16", + "last_distributed_submittal": { + "id": 27814809, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39087910, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5514419108, + "content_type": "application/pdf", + "filename": "23 36 16-1.1 - Air Terminal Units (Single Duct)-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5514419108, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHW3FYTYBZJ2MVJGSG93BFF?companyId=8089&projectId=2563870&sig=3c6db3a1cfcb8d114114de7cfda1f3466ac69ca3b09c7352b3d9381447d88780", + "viewable_document_id": 851753288 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 159081459, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-06-27T18:24:24Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037820, + "current_revision_id": 45441242, + "description": "AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "label": "23 36 16 - AIR TERMINAL UNITS (SINGLE AND DOUBLE DUCT VAV BOXES)", + "number": "23 36 16", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331509 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Terminal Units (Single Duct) (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-06-27T18:24:24Z" + }, + { + "id": 64063122, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159163240, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142326670, + "additional_page_count": 0, + "attached_at": "2025-07-14T21:36:14Z", + "attachment_id": 5555865893, + "content_type": "application/pdf", + "document_markup_layer_id": 65783631, + "filename": "26 24 13-2.0 - EPO Switch_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-14T21:36:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05DV8097MX4XXAK5KE5YGFM?companyId=8089&projectId=2563870&sig=cdaaba37fa49169dcc13378c54b6a48df9d4f542e87579a157adbdf127fc129b", + "version_timestamp": "2025-07-14T21:36:14Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-06-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 14, + "workflow_group_number": 3 + }, + { + "id": 159163239, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 159163238, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159163237, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159163232, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140983105, + "additional_page_count": 1, + "attached_at": "2025-06-17T14:11:02Z", + "attachment_id": 5496985313, + "content_type": "application/pdf", + "document_markup_layer_id": 64653755, + "filename": "26 24 13 -2.0 - EPO Switch.pdf", + "markup_updated_at": "2025-06-17T14:14:30Z", + "state": "excluded", + "updated_at": "2025-06-17T14:14:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ3N1DJ11FFWWJGGT721THQ?companyId=8089&projectId=2563870&sig=9ff8d54f5dae97c3097867070f82bc3200b0a891f504be7869e4901131fc47eb", + "version_timestamp": "2025-06-17T14:14:30Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 159163234, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159163236, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159163228, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140982672, + "additional_page_count": 1, + "attached_at": "2025-06-17T14:11:02Z", + "attachment_id": 5496985313, + "content_type": "application/pdf", + "document_markup_layer_id": 64653755, + "filename": "26 24 13 -2.0 - EPO Switch.pdf", + "markup_updated_at": "2025-06-17T14:14:30Z", + "state": "outdated", + "updated_at": "2025-06-17T14:11:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ3N1DJ11FFWWJGGT721THQ?companyId=8089&projectId=2563870&sig=9ff8d54f5dae97c3097867070f82bc3200b0a891f504be7869e4901131fc47eb", + "version_timestamp": "2025-06-17T14:11:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 159163230, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 159163229, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-17T14:10:08Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-15T13:27:52Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-24", + "formatted_number": "26 24 13-2", + "issue_date": "2025-06-17", + "last_distributed_submittal": { + "id": 28015607, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39385191, + "comment": null, + "distributed_attachments": [ + { + "id": 5555865893, + "content_type": "application/pdf", + "filename": "26 24 13-2.0 - EPO Switch_H2MG.pdf", + "source_prostore_file_id": 5555865893, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05DV8097MX4XXAK5KE5YGFM?companyId=8089&projectId=2563870&sig=cdaaba37fa49169dcc13378c54b6a48df9d4f542e87579a157adbdf127fc129b", + "viewable_document_id": 858785492 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 159163240, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-15T13:27:52Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037839, + "current_revision_id": 45441306, + "description": "Switchboards", + "label": "26 24 13 - Switchboards", + "number": "26 24 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331577 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "EPO Switch ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-15T13:27:52Z" + }, + { + "id": 64064890, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159168701, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142219029, + "additional_page_count": 0, + "attached_at": "2025-07-11T15:59:38Z", + "attachment_id": 5551116599, + "content_type": "application/pdf", + "document_markup_layer_id": 65686853, + "filename": "26 00 00-1.0 - Manual Transfer Switch_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T15:59:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX3CRMRG082866R418JXCTV?companyId=8089&projectId=2563870&sig=fecd6efc13c6d435818cdc11a9c6588ff92db4f0bc635718db29eb9a0f202b70", + "version_timestamp": "2025-07-11T15:59:38Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-06-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 9, + "workflow_group_number": 3 + }, + { + "id": 159168698, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141316450, + "additional_page_count": 0, + "attached_at": "2025-06-23T23:17:05Z", + "attachment_id": 5511529576, + "content_type": "application/pdf", + "document_markup_layer_id": 64928001, + "filename": "26 00 00 - 1.0 - Manual Transfer Switch.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-23T23:17:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYFH935ZNTQQ30SSX0XNYS2F?companyId=8089&projectId=2563870&sig=386af4e7916f01cb046510e0db983e2498d3f4a15c28ab4eec511cecfa3ba7a9", + "version_timestamp": "2025-06-23T23:17:05Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-23", + "sent_date": "2025-06-17", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 159168700, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159168699, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159168695, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140986800, + "additional_page_count": 1, + "attached_at": "2025-06-17T14:43:50Z", + "attachment_id": 5497142147, + "content_type": "application/pdf", + "document_markup_layer_id": 64656842, + "filename": "26 00 00 - 1.0 - Manual Transfer Switch.pdf", + "markup_updated_at": "2025-06-17T14:47:01Z", + "state": "excluded", + "updated_at": "2025-06-17T14:47:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ5H61EE4FMNJG972YF349M?companyId=8089&projectId=2563870&sig=ae75c46177a7211e64e923471f71a2a9b1b341da0485a35a22a45dd80c9ff4b3", + "version_timestamp": "2025-06-17T14:47:01Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 159168696, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159168697, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-06-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159168692, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140986482, + "additional_page_count": 1, + "attached_at": "2025-06-17T14:43:50Z", + "attachment_id": 5497142147, + "content_type": "application/pdf", + "document_markup_layer_id": 64656842, + "filename": "26 00 00 - 1.0 - Manual Transfer Switch.pdf", + "markup_updated_at": "2025-06-17T14:47:01Z", + "state": "outdated", + "updated_at": "2025-06-17T14:43:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ5H61EE4FMNJG972YF349M?companyId=8089&projectId=2563870&sig=ae75c46177a7211e64e923471f71a2a9b1b341da0485a35a22a45dd80c9ff4b3", + "version_timestamp": "2025-06-17T14:43:50Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 159168694, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 159168693, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-17T14:42:54Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-11T19:03:56Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-06-30", + "formatted_number": "26 00 00-1", + "issue_date": "2025-06-17", + "last_distributed_submittal": { + "id": 27986411, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39340293, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5551116599, + "content_type": "application/pdf", + "filename": "26 00 00-1.0 - Manual Transfer Switch_ACR_H2MG.pdf", + "source_prostore_file_id": 5551116599, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX3CRMRG082866R418JXCTV?companyId=8089&projectId=2563870&sig=fecd6efc13c6d435818cdc11a9c6588ff92db4f0bc635718db29eb9a0f202b70", + "viewable_document_id": 857981150 + } + ], + "response_name": "Rejected", + "submittal_approver_id": 159168701, + "submittal_response": { + "id": 23348891, + "considered": "rejected", + "name": "Rejected" + }, + "submittal_response_id": 23348891, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T19:03:56Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037826, + "current_revision_id": 45441262, + "description": "ELECTRICAL GENERAL PROVISIONS", + "label": "26 00 00 - ELECTRICAL GENERAL PROVISIONS", + "number": "26 00 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331537 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Manual Transfer Switch ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-11T19:03:56Z" + }, + { + "id": 64065737, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159171616, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142297582, + "additional_page_count": 0, + "attached_at": "2025-07-14T17:00:56Z", + "attachment_id": 5554562364, + "content_type": "application/pdf", + "document_markup_layer_id": 65757157, + "filename": "33 05 30-2.0 - Wastewater Manhole Lining_CVL.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-14T17:00:56Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04VQ11Y4ZM26QZTY0BHWDRV?companyId=8089&projectId=2563870&sig=80e91292f5ee07957a8a3a5cd06606d67ec274bddf8ada5ed6322d8d93f7a0c3", + "version_timestamp": "2025-07-14T17:00:56Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-06-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 9, + "workflow_group_number": 2 + }, + { + "id": 159171614, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140988910, + "additional_page_count": 1, + "attached_at": "2025-06-17T15:00:14Z", + "attachment_id": 5497229319, + "content_type": "application/pdf", + "document_markup_layer_id": 64658617, + "filename": "33 05 30 -2.0 - WWMH Coating.pdf", + "markup_updated_at": "2025-06-17T15:04:30Z", + "state": "excluded", + "updated_at": "2025-06-17T15:04:30Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ6ET4E05TBRTBH4DYAEDHM?companyId=8089&projectId=2563870&sig=15481c355d8b085f50876761b0bcbe40ff6961dec7a1ee6ded4f3e70c29f03b5", + "version_timestamp": "2025-06-17T15:04:30Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159171615, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159171613, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140988446, + "additional_page_count": 1, + "attached_at": "2025-06-17T15:00:14Z", + "attachment_id": 5497229319, + "content_type": "application/pdf", + "document_markup_layer_id": 64658617, + "filename": "33 05 30 -2.0 - WWMH Coating.pdf", + "markup_updated_at": "2025-06-17T15:04:30Z", + "state": "outdated", + "updated_at": "2025-06-17T15:00:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ6ET4E05TBRTBH4DYAEDHM?companyId=8089&projectId=2563870&sig=15481c355d8b085f50876761b0bcbe40ff6961dec7a1ee6ded4f3e70c29f03b5", + "version_timestamp": "2025-06-17T15:00:14Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-17T14:57:33Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-17T13:17:37Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-01", + "formatted_number": "33 05 30-2", + "issue_date": "2025-06-17", + "last_distributed_submittal": { + "id": 28052963, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439481, + "comment": null, + "distributed_attachments": [ + { + "id": 5554562364, + "content_type": "application/pdf", + "filename": "33 05 30-2.0 - Wastewater Manhole Lining_CVL.pdf", + "source_prostore_file_id": 5554562364, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04VQ11Y4ZM26QZTY0BHWDRV?companyId=8089&projectId=2563870&sig=80e91292f5ee07957a8a3a5cd06606d67ec274bddf8ada5ed6322d8d93f7a0c3", + "viewable_document_id": 858583689 + } + ], + "response_name": "Approved", + "submittal_approver_id": 159171616, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T13:17:37Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36787874, + "current_revision_id": 45045032, + "description": "Manholes and Junction Boxes", + "label": "33 05 30 - Manholes and Junction Boxes", + "number": "33 05 30", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wastewater Manhole Lining ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T13:17:37Z" + }, + { + "id": 64067810, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160714517, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142193235, + "additional_page_count": 0, + "attached_at": "2025-07-11T04:25:17Z", + "attachment_id": 5549969718, + "content_type": "application/pdf", + "document_markup_layer_id": 65674142, + "filename": "05 31 00-2.0 - Galvanizing Compound (Repair Paint)_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T04:25:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVVNHHP2VGG15P9ARGW78FG?companyId=8089&projectId=2563870&sig=33f30c49b7b0e551b5274581e020077dd7b9591fa26e52e0843000dc7b0ae1d9", + "version_timestamp": "2025-07-11T04:25:17Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 7, + "workflow_group_number": 2 + }, + { + "id": 159178977, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159178976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159178974, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140993679, + "additional_page_count": 1, + "attached_at": "2025-06-17T15:36:10Z", + "attachment_id": 5497433611, + "content_type": "application/pdf", + "document_markup_layer_id": 64662656, + "filename": "05 31 00 - 2.0 - Galvanizing Compound (PD).pdf", + "markup_updated_at": "2025-06-17T15:45:18Z", + "state": "excluded", + "updated_at": "2025-06-17T15:45:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ8GTHVDBJRYMZB8T4BXF6X?companyId=8089&projectId=2563870&sig=d24663eb3b828ca578ac69c1ee5c135164fc40576844192b918f9f8bda8561ac", + "version_timestamp": "2025-06-17T15:45:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159178975, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159178973, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 140992550, + "additional_page_count": 1, + "attached_at": "2025-06-17T15:36:10Z", + "attachment_id": 5497433611, + "content_type": "application/pdf", + "document_markup_layer_id": 64662656, + "filename": "05 31 00 - 2.0 - Galvanizing Compound (PD).pdf", + "markup_updated_at": "2025-06-17T15:45:18Z", + "state": "outdated", + "updated_at": "2025-06-17T15:36:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZ8GTHVDBJRYMZB8T4BXF6X?companyId=8089&projectId=2563870&sig=d24663eb3b828ca578ac69c1ee5c135164fc40576844192b918f9f8bda8561ac", + "version_timestamp": "2025-06-17T15:36:10Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-17T15:35:06Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-12T18:15:31Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-01", + "formatted_number": "053100-2", + "issue_date": "2025-06-17", + "last_distributed_submittal": { + "id": 27990174, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39345577, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5549969718, + "content_type": "application/pdf", + "filename": "05 31 00-2.0 - Galvanizing Compound (Repair Paint)_STR.pdf", + "source_prostore_file_id": 5549969718, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVVNHHP2VGG15P9ARGW78FG?companyId=8089&projectId=2563870&sig=33f30c49b7b0e551b5274581e020077dd7b9591fa26e52e0843000dc7b0ae1d9", + "viewable_document_id": 857770474 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160714517, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Please furnish as noted.
", + "sent_at": "2025-07-12T18:15:31Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037659, + "current_revision_id": 45441066, + "description": "STEEL DECKING", + "label": "053100 - STEEL DECKING", + "number": "053100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331040 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Galvanizing Compound (Repair Paint)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-12T18:15:31Z" + }, + { + "id": 64069231, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160826825, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142309386, + "additional_page_count": 0, + "attached_at": "2025-07-14T18:53:45Z", + "attachment_id": 5555200558, + "content_type": "application/pdf", + "document_markup_layer_id": 65929377, + "filename": "23 82 19-3 Fan Coils Units Resubmittal 3 (for record) - H2MG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-14T18:53:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K054HHB3EQCVS64N2C6PQ2FQ?companyId=8089&projectId=2563870&sig=8301c9fe8c26c52c8680968dc930edbba2d18b443cab0f7c34ac63a6a49ce880", + "version_timestamp": "2025-07-14T18:53:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 4 + }, + { + "id": 159182848, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141627730, + "additional_page_count": 0, + "attached_at": "2025-06-30T14:57:26Z", + "attachment_id": 5525183588, + "content_type": "application/pdf", + "document_markup_layer_id": 65177907, + "filename": "23 82 19-1.2 - Fan Coil Units-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-30T14:57:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ0NCZKHA9S9DXT2K00TJRF1?companyId=8089&projectId=2563870&sig=97a649b7c7678f1ae3868823b535b8d32ff03906e6e3677c3d971224fb9e2da1", + "version_timestamp": "2025-06-30T14:57:26Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-03", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-06-30", + "sent_date": "2025-06-26", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 159182844, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141520980, + "additional_page_count": 0, + "attached_at": "2025-06-26T20:18:21Z", + "attachment_id": 5520330648, + "content_type": "application/pdf", + "document_markup_layer_id": 65090022, + "filename": "238219-01-02 - ACR Sbtl Review - Fan Coil Units.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-26T20:18:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYPY6RE7RS3S4WPWJVYMTXHX?companyId=8089&projectId=2563870&sig=72a916b5cd08bf3069229cf99f230fc611f859ccf3200436ef9189f33a5a4b44", + "version_timestamp": "2025-06-26T20:18:21Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-06-26", + "sent_date": "2025-06-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159182847, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-23", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159182846, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-23", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159182845, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-23", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159182841, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141282999, + "additional_page_count": 1, + "attached_at": "2025-06-17T16:02:01Z", + "attachment_id": 5497547098, + "content_type": "application/pdf", + "document_markup_layer_id": 64901452, + "filename": "23 82 19 - 1.2 - Fan Coil Units Resubmittal 3.0 (For Record).pdf", + "markup_updated_at": "2025-06-23T17:06:18Z", + "state": "excluded", + "updated_at": "2025-06-23T17:06:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZA0AKFTS03TFV2N33YNZ2D?companyId=8089&projectId=2563870&sig=43f89cac78375d13fd4f0e48bb0f29e24055ca9a31cd0a225b6c50d6f2f68858", + "version_timestamp": "2025-06-23T17:06:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-06-23", + "sent_date": "2025-06-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -1, + "workflow_group_number": 1 + }, + { + "id": 159182842, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159182843, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-17", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159182837, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 140995944, + "additional_page_count": 1, + "attached_at": "2025-06-17T16:02:01Z", + "attachment_id": 5497547098, + "content_type": "application/pdf", + "document_markup_layer_id": 64901452, + "filename": "23 82 19 - 1.2 - Fan Coil Units Resubmittal 3.0 (For Record).pdf", + "markup_updated_at": "2025-06-23T17:06:18Z", + "state": "outdated", + "updated_at": "2025-06-17T16:02:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JXZA0AKFTS03TFV2N33YNZ2D?companyId=8089&projectId=2563870&sig=43f89cac78375d13fd4f0e48bb0f29e24055ca9a31cd0a225b6c50d6f2f68858", + "version_timestamp": "2025-06-17T16:02:01Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-17", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 159182840, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 159182838, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 159182836, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-17T15:58:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-17T13:16:39Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-15", + "formatted_number": "23 82 19-1", + "issue_date": "2025-06-17", + "last_distributed_submittal": { + "id": 28052936, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439445, + "comment": "", + "distributed_attachments": [ + { + "id": 5555200558, + "content_type": "application/pdf", + "filename": "23 82 19-3 Fan Coils Units Resubmittal 3 (for record) - H2MG Response.pdf", + "source_prostore_file_id": 5555200558, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K054HHB3EQCVS64N2C6PQ2FQ?companyId=8089&projectId=2563870&sig=8301c9fe8c26c52c8680968dc930edbba2d18b443cab0f7c34ac63a6a49ce880", + "viewable_document_id": 858669638 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160826825, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T13:16:39Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037824, + "current_revision_id": 45441259, + "description": "FAN COIL UNITS", + "label": "23 82 19 - FAN COIL UNITS", + "number": "23 82 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331530 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fan Coil Units (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T13:16:39Z" + }, + { + "id": 64102526, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160714338, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142193283, + "additional_page_count": 0, + "attached_at": "2025-07-11T04:33:21Z", + "attachment_id": 5549974481, + "content_type": "application/pdf", + "document_markup_layer_id": 65699660, + "filename": "05 50 00-3.0 - Ladder Calculations_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T04:33:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVW47K6G728AZM9MH7QFAPM?companyId=8089&projectId=2563870&sig=c32b05e4d6aa68c43406a6f305144e1574e9d6bcee9369a337ef3aefb5c3877b", + "version_timestamp": "2025-07-11T04:33:21Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-02", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 6, + "workflow_group_number": 2 + }, + { + "id": 159301923, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-18", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159301922, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-18", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159301920, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141066072, + "additional_page_count": 1, + "attached_at": "2025-06-18T15:10:31Z", + "attachment_id": 5500386793, + "content_type": "application/pdf", + "document_markup_layer_id": 64724175, + "filename": "055000 - 3.0 - Ladder Calculations.pdf", + "markup_updated_at": "2025-06-18T15:13:02Z", + "state": "excluded", + "updated_at": "2025-06-18T15:13:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY1SERQNC8R1JDXDFBST274X?companyId=8089&projectId=2563870&sig=a259bf46fcb435510c109e7123edf413130092118c1c8b556a17740f72a12c2e", + "version_timestamp": "2025-06-18T15:13:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-06-25", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-18", + "sent_date": "2025-06-18", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159301921, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-06-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-18", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159301919, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141065825, + "additional_page_count": 1, + "attached_at": "2025-06-18T15:10:31Z", + "attachment_id": 5500386793, + "content_type": "application/pdf", + "document_markup_layer_id": 64724175, + "filename": "055000 - 3.0 - Ladder Calculations.pdf", + "markup_updated_at": "2025-06-18T15:13:02Z", + "state": "outdated", + "updated_at": "2025-06-18T15:10:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JY1SERQNC8R1JDXDFBST274X?companyId=8089&projectId=2563870&sig=a259bf46fcb435510c109e7123edf413130092118c1c8b556a17740f72a12c2e", + "version_timestamp": "2025-06-18T15:10:31Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-02", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-18", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-18T15:09:24Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-12T18:13:17Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-02", + "formatted_number": "055000-3", + "issue_date": "2025-06-18", + "last_distributed_submittal": { + "id": 27990170, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39345573, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5549974481, + "content_type": "application/pdf", + "filename": "05 50 00-3.0 - Ladder Calculations_STR.pdf", + "source_prostore_file_id": 5549974481, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZVW47K6G728AZM9MH7QFAPM?companyId=8089&projectId=2563870&sig=c32b05e4d6aa68c43406a6f305144e1574e9d6bcee9369a337ef3aefb5c3877b", + "viewable_document_id": 857771053 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160714338, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See approved submittal for reference.
", + "sent_at": "2025-07-12T18:13:17Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037661, + "current_revision_id": 45441068, + "description": "METAL FABRICATIONS", + "label": "055000 - METAL FABRICATIONS", + "number": "055000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331054 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Ladder Calculations ", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-07-12T18:13:17Z" + }, + { + "id": 64232003, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159748824, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159748823, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159748822, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159748821, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159748820, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4393078, + "name": "Sasha Meacham" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-24T12:29:19Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-29", + "formatted_number": "081113-16", + "issue_date": "2025-06-24", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "16", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": null, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037686, + "current_revision_id": 45441098, + "description": "HOLLOW METAL DOORS AND FRAMES", + "label": "081113 - HOLLOW METAL DOORS AND FRAMES", + "number": "081113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331207 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2857681, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.C", + "specification_section_id": null, + "submittal_ids": [ + 62223388, + 62233310, + 62224343, + 62223582, + 62233220, + 62223243, + 62223672, + 62224372, + 62233105, + 62233318, + 62223532, + 62223142, + 62223227, + 62223202, + 62233244, + 62223435, + 62233128, + 60120569, + 60118281, + 60125905, + 60120680, + 60118099, + 60120518, + 60118211, + 60125945, + 60120728, + 60125917, + 60117799, + 64232003, + 62213782 + ], + "title": "LaForce Action Submittals", + "updated_at": "2025-04-02T12:26:12Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "H", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-24T13:02:12Z" + }, + { + "id": 64237223, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159766955, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143456349, + "additional_page_count": 0, + "attached_at": "2025-08-06T04:29:18Z", + "attachment_id": 5605802828, + "content_type": "application/pdf", + "document_markup_layer_id": 66769004, + "filename": "07 19 00-1.1 - Water Repellents_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-06T04:29:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YT6VQ3VJMGFBTAFEK3P6MC?companyId=8089&projectId=2563870&sig=96f2142ba4d5205c22b3bef636c32a598425846ae3d56a4d9d06108c8d8d2bb4", + "version_timestamp": "2025-08-06T04:29:18Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 8, + "workflow_group_number": 3 + }, + { + "id": 159766952, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142536938, + "additional_page_count": 0, + "attached_at": "2025-07-17T19:40:17Z", + "attachment_id": 5564718484, + "content_type": "application/pdf", + "document_markup_layer_id": 65972691, + "filename": "Water Repellents Substitution Request Form_FGMA - (EE-AAN).pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-17T19:40:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CYDDZBRPBQ1YMQ76YRYYXT?companyId=8089&projectId=2563870&sig=ff2da35c7bafbe7853aa56c83af8ab9dbcf4b78597bd7997b0bc9d932490cdc3", + "version_timestamp": "2025-07-17T19:40:17Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-14", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": -2, + "workflow_group_number": 2 + }, + { + "id": 159766954, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159766953, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159766950, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142271693, + "additional_page_count": 0, + "attached_at": "2025-07-14T12:43:36Z", + "attachment_id": 5553652424, + "content_type": "application/pdf", + "document_markup_layer_id": 65716366, + "filename": "WS_Siloxane_PD_SPC.pdf", + "markup_updated_at": "2025-07-14T13:03:28Z", + "state": "excluded", + "updated_at": "2025-07-14T13:03:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04FCE77PF68DPNGKSRM97QW?companyId=8089&projectId=2563870&sig=21fb676e4c83e64545a2e0b745d4af1b4008b2f4ab3ec6b2c2c80ab0373d7328", + "version_timestamp": "2025-07-14T13:03:28Z" + }, + { + "id": 142271037, + "additional_page_count": 1, + "attached_at": "2025-07-14T12:43:36Z", + "attachment_id": 5553650627, + "content_type": "application/pdf", + "document_markup_layer_id": 65715747, + "filename": "Water Repellents Substitution Request Form_FGMA.pdf", + "markup_updated_at": "2025-07-14T13:02:39Z", + "state": "excluded", + "updated_at": "2025-07-14T13:02:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04FB63XDF140W4RA625ACKS?companyId=8089&projectId=2563870&sig=1ca8bc0fddd968e3e47cd010bc5725e7c53d0f38de5ee12adf23224800ec2229", + "version_timestamp": "2025-07-14T13:02:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159766951, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159766949, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142270173, + "additional_page_count": 0, + "attached_at": "2025-07-14T12:43:36Z", + "attachment_id": 5553652424, + "content_type": "application/pdf", + "document_markup_layer_id": 65716366, + "filename": "WS_Siloxane_PD_SPC.pdf", + "markup_updated_at": "2025-07-14T13:03:28Z", + "state": "outdated", + "updated_at": "2025-07-14T12:43:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04FCE77PF68DPNGKSRM97QW?companyId=8089&projectId=2563870&sig=21fb676e4c83e64545a2e0b745d4af1b4008b2f4ab3ec6b2c2c80ab0373d7328", + "version_timestamp": "2025-07-14T12:43:36Z" + }, + { + "id": 142270172, + "additional_page_count": 1, + "attached_at": "2025-07-14T12:43:36Z", + "attachment_id": 5553650627, + "content_type": "application/pdf", + "document_markup_layer_id": 65715747, + "filename": "Water Repellents Substitution Request Form_FGMA.pdf", + "markup_updated_at": "2025-07-14T13:02:39Z", + "state": "outdated", + "updated_at": "2025-07-14T12:43:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04FB63XDF140W4RA625ACKS?companyId=8089&projectId=2563870&sig=1ca8bc0fddd968e3e47cd010bc5725e7c53d0f38de5ee12adf23224800ec2229", + "version_timestamp": "2025-07-14T12:43:36Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": null, + "user": { + "id": 1834825, + "name": "Douglas Clark" + }, + "variance": 4, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-24T14:34:16Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-08T13:34:11Z", + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-24", + "formatted_number": "071900-1", + "issue_date": "2025-06-24", + "last_distributed_submittal": { + "id": 28337040, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39859073, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5605802828, + "content_type": "application/pdf", + "filename": "07 19 00-1.1 - Water Repellents_FGMA.pdf", + "source_prostore_file_id": 5605802828, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YT6VQ3VJMGFBTAFEK3P6MC?companyId=8089&projectId=2563870&sig=96f2142ba4d5205c22b3bef636c32a598425846ae3d56a4d9d06108c8d8d2bb4", + "viewable_document_id": 867490462 + } + ], + "response_name": "Approved", + "submittal_approver_id": 159766955, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1834825, + "initials": "DC", + "name": "Douglas Clark", + "vendor_name": "Fireproof Contractors, Inc." + }, + { + "id": 4112315, + "initials": "NR", + "name": "Nickie Ramm", + "vendor_name": "" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12078701, + "initials": "CD", + "name": "Christopher Doyle", + "vendor_name": "Austin ISD" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-08T13:34:11Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 1834825, + "name": "Douglas Clark" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 19167435, + "name": "Fireproof Contractors, Inc." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037673, + "current_revision_id": 44212977, + "description": "Water Repellents", + "label": "071900 - Water Repellents", + "number": "071900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 780010312 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-27", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2764175, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "007.A", + "specification_section_id": null, + "submittal_ids": [ + 63389186, + 59635639, + 64237223, + 63329756, + 63388668, + 63388638, + 63388332, + 59635898, + 59636815, + 59636387, + 59635728, + 59641561, + 59635755, + 59638599 + ], + "title": "Fireproof Contractors Action Submittals", + "updated_at": "2025-05-20T13:44:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Water Repellents ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-08T13:34:11Z" + }, + { + "id": 64241627, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159784616, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141851332, + "additional_page_count": 0, + "attached_at": "2025-07-03T16:25:11Z", + "attachment_id": 5534733583, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "33 05 50-3.0 - Disinfection Plan-SD_CVL.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-03T16:25:11Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8H5C3A66QVNXF9G8DG5W96?companyId=8089&projectId=2563870&sig=b607b292149be9e8b2c52765208b805e955fc9b1d75e676801126bf3263b74a4", + "version_timestamp": "2025-07-03T16:25:11Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-03", + "sent_date": "2025-06-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 159784614, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141354489, + "additional_page_count": 0, + "attached_at": "2025-06-24T16:49:37Z", + "attachment_id": 5513354245, + "content_type": "application/pdf", + "document_markup_layer_id": 64995031, + "filename": "33 05 50 - 4.0 - Off Site - SWAB Method Request with MAP.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-06-24T16:49:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHDG8V89FH03AGKNSAKA79B?companyId=8089&projectId=2563870&sig=6c5cbf16f4faf3b7151e202c912d89ea9f11f257f67a8b39348ab6b0a538ff07", + "version_timestamp": "2025-06-24T16:49:37Z" + }, + { + "id": 141352686, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:28:38Z", + "attachment_id": 5513274707, + "content_type": "application/pdf", + "document_markup_layer_id": 64961122, + "filename": "33 05 50 - 3.0 - Disinfection Plan Granular Method with MAP - 06.18.2025 - 00.pdf", + "markup_updated_at": "2025-06-24T16:30:13Z", + "state": "excluded", + "updated_at": "2025-06-24T16:30:13Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHC8D2J7D3TSZ71XNQ4TDJ5?companyId=8089&projectId=2563870&sig=aa08045aa40e225ac4d238782912ee62bb91bef056505c124b5d679e3ae2dd15", + "version_timestamp": "2025-06-24T16:30:13Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": "2025-06-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 159784615, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-06-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159786236, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141352558, + "additional_page_count": 1, + "attached_at": "2025-06-24T16:28:38Z", + "attachment_id": 5513274707, + "content_type": "application/pdf", + "document_markup_layer_id": 64961122, + "filename": "33 05 50 - 3.0 - Disinfection Plan Granular Method with MAP - 06.18.2025 - 00.pdf", + "markup_updated_at": "2025-06-24T16:30:13Z", + "state": "outdated", + "updated_at": "2025-06-24T16:28:38Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JYHC8D2J7D3TSZ71XNQ4TDJ5?companyId=8089&projectId=2563870&sig=aa08045aa40e225ac4d238782912ee62bb91bef056505c124b5d679e3ae2dd15", + "version_timestamp": "2025-06-24T16:28:38Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-24", + "sent_date": null, + "user": { + "id": 4697511, + "name": "Lily Zapata" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 159784613, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-24T16:04:36Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-03T19:15:33Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-08", + "formatted_number": "33 05 50-3", + "issue_date": "2025-06-24", + "last_distributed_submittal": { + "id": 27890321, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39198593, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5534733583, + "content_type": "application/pdf", + "filename": "33 05 50-3.0 - Disinfection Plan-SD_CVL.pdf", + "source_prostore_file_id": 5534733583, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ8H5C3A66QVNXF9G8DG5W96?companyId=8089&projectId=2563870&sig=b607b292149be9e8b2c52765208b805e955fc9b1d75e676801126bf3263b74a4", + "viewable_document_id": 855305429 + } + ], + "response_name": "Approved", + "submittal_approver_id": 159784616, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 4697511, + "initials": "LZ", + "name": "Lily Zapata", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-03T19:15:33Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 4697511, + "name": "Lily Zapata" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Disinfection Plan (SD) ", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-03T19:15:33Z" + }, + { + "id": 64242833, + "actual_delivery_date": null, + "approvers": [ + { + "id": 159790230, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 159790229, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159790228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 159790227, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4697511, + "name": "Lily Zapata" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 159790226, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-08", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-06-24T16:35:01Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-29", + "formatted_number": "33 05 50-4", + "issue_date": "2025-06-24", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 4697511, + "name": "Lily Zapata" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36788080, + "current_revision_id": 45045271, + "description": "Utility Piping, Valves, and Appurtenances", + "label": "33 05 50 - Utility Piping, Valves, and Appurtenances", + "number": "33 05 50", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Portable Water Mains Swab Method", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-06-24T16:48:44Z" + }, + { + "id": 64449132, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160547750, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141816132, + "additional_page_count": 0, + "attached_at": "2025-07-02T22:38:05Z", + "attachment_id": 5533128512, + "content_type": "application/pdf", + "document_markup_layer_id": 65368981, + "filename": "05 12 00-16.0 - Hydronic Pipe Steel Rack_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-02T22:38:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ6MK9ZA593HVJZDTQM6RKK7?companyId=8089&projectId=2563870&sig=92bda209f1cc4990d87a2a69df9e7e491607df33649204c128ac36cc8af70475", + "version_timestamp": "2025-07-02T22:38:05Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 160495024, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 141782511, + "additional_page_count": 1, + "attached_at": "2025-07-02T16:48:07Z", + "attachment_id": 5531858011, + "content_type": "application/pdf", + "document_markup_layer_id": 65311060, + "filename": "05 12 00 - 16.0 - Hydronic Pipe Rack.pdf", + "markup_updated_at": "2025-07-02T16:50:49Z", + "state": "excluded", + "updated_at": "2025-07-02T16:50:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ60KGEBP9XKACB3KX29B3HF?companyId=8089&projectId=2563870&sig=547275642050065c2bf98ed5594fd6ff6d920ede720d25281dd3487c59b7b10b", + "version_timestamp": "2025-07-02T16:50:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-07-02", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160495025, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-02", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160495084, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 141782250, + "additional_page_count": 1, + "attached_at": "2025-07-02T16:48:07Z", + "attachment_id": 5531858011, + "content_type": "application/pdf", + "document_markup_layer_id": 65311060, + "filename": "05 12 00 - 16.0 - Hydronic Pipe Rack.pdf", + "markup_updated_at": "2025-07-02T16:50:49Z", + "state": "outdated", + "updated_at": "2025-07-02T16:48:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ60KGEBP9XKACB3KX29B3HF?companyId=8089&projectId=2563870&sig=547275642050065c2bf98ed5594fd6ff6d920ede720d25281dd3487c59b7b10b", + "version_timestamp": "2025-07-02T16:48:07Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-02", + "sent_date": "2025-07-02", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-02T16:42:51Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": false, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-03T18:53:17Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-16", + "formatted_number": "051200-16", + "issue_date": "2025-07-02", + "last_distributed_submittal": { + "id": 27889953, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39198135, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5533128512, + "content_type": "application/pdf", + "filename": "05 12 00-16.0 - Hydronic Pipe Steel Rack_STR.pdf", + "source_prostore_file_id": 5533128512, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZ6MK9ZA593HVJZDTQM6RKK7?companyId=8089&projectId=2563870&sig=92bda209f1cc4990d87a2a69df9e7e491607df33649204c128ac36cc8af70475", + "viewable_document_id": 855028894 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160547750, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-03T18:53:17Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "16", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydronic Pipe Steel Rack ", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-20T09:10:59Z" + }, + { + "id": 64568670, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160907288, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142615915, + "additional_page_count": 0, + "attached_at": "2025-07-19T04:02:36Z", + "attachment_id": 5568128067, + "content_type": "application/pdf", + "document_markup_layer_id": 66032116, + "filename": "05 51 13-3.1 - Metal Pan Stairs Interior Stair - Calculations_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-19T04:02:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GDHGPDHVMRXBFQVT7FJS9C?companyId=8089&projectId=2563870&sig=d140e11382f66c3da569de353c3b4673ca105855ef9e50984dcbf3088842fdc4", + "version_timestamp": "2025-07-19T04:02:35Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-31", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-18", + "sent_date": "2025-07-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 160907286, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142533994, + "additional_page_count": 1, + "attached_at": "2025-07-17T18:59:54Z", + "attachment_id": 5564544241, + "content_type": "application/pdf", + "document_markup_layer_id": 65936119, + "filename": "05 53 13 2.2 - ST-3 Metal Pan Stairs_Calculations.pdf", + "markup_updated_at": "2025-07-17T19:11:06Z", + "state": "excluded", + "updated_at": "2025-07-17T19:11:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CW339921GZ0W5YQQXXXV3M?companyId=8089&projectId=2563870&sig=467a5c8e2b703d5d3f8dddb0ace500d4915fea329d62e494035037973722fa4b", + "version_timestamp": "2025-07-17T19:11:06Z" + } + ], + "comment": "Please review and approve. Shop drawings to be submitted separately.", + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-17", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160907284, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-17", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160907283, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142532902, + "additional_page_count": 1, + "attached_at": "2025-07-17T18:59:54Z", + "attachment_id": 5564544241, + "content_type": "application/pdf", + "document_markup_layer_id": 65936119, + "filename": "05 53 13 2.2 - ST-3 Metal Pan Stairs_Calculations.pdf", + "markup_updated_at": "2025-07-17T19:11:06Z", + "state": "outdated", + "updated_at": "2025-07-17T18:59:54Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CW339921GZ0W5YQQXXXV3M?companyId=8089&projectId=2563870&sig=467a5c8e2b703d5d3f8dddb0ace500d4915fea329d62e494035037973722fa4b", + "version_timestamp": "2025-07-17T18:59:54Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -3, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-08T20:53:31Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-22T13:45:37Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-31", + "formatted_number": "055113-3", + "issue_date": "2025-07-08", + "last_distributed_submittal": { + "id": 28107099, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39519828, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5568128067, + "content_type": "application/pdf", + "filename": "05 51 13-3.1 - Metal Pan Stairs Interior Stair - Calculations_STR.pdf", + "source_prostore_file_id": 5568128067, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GDHGPDHVMRXBFQVT7FJS9C?companyId=8089&projectId=2563870&sig=d140e11382f66c3da569de353c3b4673ca105855ef9e50984dcbf3088842fdc4", + "viewable_document_id": 860941230 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160907288, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See attached calculation for reference.
", + "sent_at": "2025-07-22T13:45:37Z" + }, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-07-18", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-20", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Pan Stairs Interior Stair - Calculations", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-07-22T13:45:37Z" + }, + { + "id": 64568738, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160908484, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143594323, + "additional_page_count": 0, + "attached_at": "2025-08-08T05:39:06Z", + "attachment_id": 5611896016, + "content_type": "application/pdf", + "document_markup_layer_id": 66826855, + "filename": "05 51 13-4.1 - Metal Pan Stairs Interior Stair ST-3-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-08T05:39:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K24240ZMXNYFK6046JNXDZY2?companyId=8089&projectId=2563870&sig=82d9b8380c15a078f403e0fc3b2edcf0bb438b846c51505c95327e97306ef9d2", + "version_timestamp": "2025-08-08T05:39:06Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-08-08", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-08", + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 160908483, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142904085, + "additional_page_count": 0, + "attached_at": "2025-07-25T02:02:23Z", + "attachment_id": 5581019956, + "content_type": "application/pdf", + "document_markup_layer_id": 66490701, + "filename": "05 51 13 4.1 - ST-3 Metal Pan Stair (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-25T02:02:23Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0ZN1VD1KSKGCVC81SQ34V8P?companyId=8089&projectId=2563870&sig=a80e91d76b560b0379bbfe1ba3dd474738e5059479fa70e3633a7f49feaba0e6", + "version_timestamp": "2025-07-25T02:02:23Z" + } + ], + "comment": "Please review for approval and confirm clouded notes.", + "days_to_respond": 5, + "due_date": "2025-08-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 160908482, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160908481, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142793686, + "additional_page_count": 1, + "attached_at": "2025-07-23T15:28:28Z", + "attachment_id": 5576121787, + "content_type": "application/pdf", + "document_markup_layer_id": 66166226, + "filename": "05 51 13 4.1 - ST-3 Metal Pan Stair (SD).pdf", + "markup_updated_at": "2025-07-23T17:55:59Z", + "state": "excluded", + "updated_at": "2025-07-23T15:28:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0VYCGRVHA0BPF35NVTGQ121?companyId=8089&projectId=2563870&sig=6a942a39be97757b7dd89bedc024ddd0bfaf582cea09f3653d5cebe2a73cb674", + "version_timestamp": "2025-07-23T15:28:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-22", + "sent_date": null, + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": 0, + "workflow_group_number": 0 + }, + { + "id": 160908480, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-08T20:55:09Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-11T18:13:40Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-08", + "formatted_number": "055113-4", + "issue_date": "2025-07-08", + "last_distributed_submittal": { + "id": 28362138, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39896563, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5611896016, + "content_type": "application/pdf", + "filename": "05 51 13-4.1 - Metal Pan Stairs Interior Stair ST-3-SD_STR_FGMA.pdf", + "source_prostore_file_id": 5611896016, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K24240ZMXNYFK6046JNXDZY2?companyId=8089&projectId=2563870&sig=82d9b8380c15a078f403e0fc3b2edcf0bb438b846c51505c95327e97306ef9d2", + "viewable_document_id": 868567874 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160908484, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11721106, + "initials": "AG", + "name": "Alfredo Garcia", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Nathan,
\nSee approved as noted shop drawings. Please furnish as noted and provide fabrication lead time.
", + "sent_at": "2025-08-11T18:13:40Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037662, + "current_revision_id": 45441069, + "description": "METAL PAN STAIRS", + "label": "055113 - METAL PAN STAIRS", + "number": "055113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331062 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Pan Stairs: Interior Stair ST-3 (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-11T18:13:41Z" + }, + { + "id": 64569831, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160911844, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142227203, + "additional_page_count": 0, + "attached_at": "2025-07-11T17:35:03Z", + "attachment_id": 5551456407, + "content_type": "application/pdf", + "document_markup_layer_id": 65930813, + "filename": "340S-2.0 - Asphalt Mix_CVL.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T17:35:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX8VHS0Q1947606WS1XTEHN?companyId=8089&projectId=2563870&sig=c4dda2d1133e41aac4e799050a19ee1604abbd4415af74ab934c724c3a117541", + "version_timestamp": "2025-07-11T17:35:02Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-07-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 160911842, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142038822, + "additional_page_count": 1, + "attached_at": "2025-07-08T21:20:28Z", + "attachment_id": 5543497286, + "content_type": "application/pdf", + "document_markup_layer_id": 65524149, + "filename": "340S - Asphalt.pdf", + "markup_updated_at": "2025-07-08T21:22:55Z", + "state": "excluded", + "updated_at": "2025-07-08T21:22:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNYJHYMF5QKTM7DAPNQGR1E?companyId=8089&projectId=2563870&sig=fadc70ef5d728102b7c25e118129133f708c08df1d196eacae3550d954d4419d", + "version_timestamp": "2025-07-08T21:22:55Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": "2025-07-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160911843, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160911841, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142038632, + "additional_page_count": 1, + "attached_at": "2025-07-08T21:20:28Z", + "attachment_id": 5543497286, + "content_type": "application/pdf", + "document_markup_layer_id": 65524149, + "filename": "340S - Asphalt.pdf", + "markup_updated_at": "2025-07-08T21:22:55Z", + "state": "outdated", + "updated_at": "2025-07-08T21:20:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNYJHYMF5QKTM7DAPNQGR1E?companyId=8089&projectId=2563870&sig=fadc70ef5d728102b7c25e118129133f708c08df1d196eacae3550d954d4419d", + "version_timestamp": "2025-07-08T21:20:28Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": null, + "user": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-08T21:20:10Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-14T13:07:36Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-22", + "formatted_number": "340S-2", + "issue_date": "2025-07-08", + "last_distributed_submittal": { + "id": 27994601, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39353805, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5551456407, + "content_type": "application/pdf", + "filename": "340S-2.0 - Asphalt Mix_CVL.pdf", + "source_prostore_file_id": 5551456407, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX8VHS0Q1947606WS1XTEHN?companyId=8089&projectId=2563870&sig=c4dda2d1133e41aac4e799050a19ee1604abbd4415af74ab934c724c3a117541", + "viewable_document_id": 858042830 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160911844, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12142926, + "initials": "AB", + "name": "Alessa Bailey", + "vendor_name": "WPM Construction Services, Inc" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13654133, + "initials": "DD", + "name": "Daniel Daghestani", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-07-14T13:07:36Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12142926, + "name": "Alessa Bailey" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21616963, + "name": "WPM Construction Services, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37040833, + "current_revision_id": 45370053, + "description": "HOT MIX ASPHALTIC CONCRETE PAVEMENT", + "label": "340S - HOT MIX ASPHALTIC CONCRETE PAVEMENT", + "number": "340S", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 803903923 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2797968, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "033.A", + "specification_section_id": null, + "submittal_ids": [ + 63314812, + 62540204, + 61884592, + 61515305, + 61443843, + 61388951, + 61331552, + 60765912, + 60604855, + 60604779, + 60605235, + 60605585, + 60605042, + 64065737, + 64569831, + 64241627, + 64242833, + 61085141, + 61085164 + ], + "title": "WPM Utilities Action Submittals", + "updated_at": "2025-02-25T15:59:44Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Asphalt Mix ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-14T13:07:36Z" + }, + { + "id": 64570044, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160912452, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142216277, + "additional_page_count": 0, + "attached_at": "2025-07-11T15:33:06Z", + "attachment_id": 5551019756, + "content_type": "application/pdf", + "document_markup_layer_id": 65692374, + "filename": "23 21 13.02-3.0 - Level 1 Area B HVAC Piping-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-11T15:33:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX1W1Q1EQRSANCM2925AMXT?companyId=8089&projectId=2563870&sig=562c31c61640e62a7ae91f19e925295ac78ce051c0dd42bb966f998a5aa612b4", + "version_timestamp": "2025-07-11T15:33:06Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-11", + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 3 + }, + { + "id": 160912448, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-08", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 160912451, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160912450, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160912449, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160912445, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142039439, + "additional_page_count": 1, + "attached_at": "2025-07-08T21:28:10Z", + "attachment_id": 5543521926, + "content_type": "application/pdf", + "document_markup_layer_id": 65524496, + "filename": "23 21 13.13 - 3.0 - Level 1 Area B HVAC Piping.pdf", + "markup_updated_at": "2025-07-08T21:30:32Z", + "state": "excluded", + "updated_at": "2025-07-08T21:30:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNZ0HTYX8EFWN4TBVK1B8HA?companyId=8089&projectId=2563870&sig=535ccb07b3e22f4186c49f3277faaecf35a44dc0a5b9f82c6671a180284da414", + "version_timestamp": "2025-07-08T21:30:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": "2025-07-08", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160912446, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160912447, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-08", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160912442, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142039274, + "additional_page_count": 1, + "attached_at": "2025-07-08T21:28:10Z", + "attachment_id": 5543521926, + "content_type": "application/pdf", + "document_markup_layer_id": 65524496, + "filename": "23 21 13.13 - 3.0 - Level 1 Area B HVAC Piping.pdf", + "markup_updated_at": "2025-07-08T21:30:32Z", + "state": "outdated", + "updated_at": "2025-07-08T21:28:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZNZ0HTYX8EFWN4TBVK1B8HA?companyId=8089&projectId=2563870&sig=535ccb07b3e22f4186c49f3277faaecf35a44dc0a5b9f82c6671a180284da414", + "version_timestamp": "2025-07-08T21:28:10Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-08", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160912444, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160912443, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160912441, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-08T21:26:33Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-11T18:56:19Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-16", + "formatted_number": "23 21 13.02-3", + "issue_date": "2025-07-08", + "last_distributed_submittal": { + "id": 27986252, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39340070, + "comment": null, + "distributed_attachments": [ + { + "id": 5551019756, + "content_type": "application/pdf", + "filename": "23 21 13.02-3.0 - Level 1 Area B HVAC Piping-SD_H2MG.pdf", + "source_prostore_file_id": 5551019756, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZX1W1Q1EQRSANCM2925AMXT?companyId=8089&projectId=2563870&sig=562c31c61640e62a7ae91f19e925295ac78ce051c0dd42bb966f998a5aa612b4", + "viewable_document_id": 857966082 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160912452, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-11T18:56:19Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096827, + "current_revision_id": 45441224, + "description": "PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "label": "23 21 13.02 - PIPING AND PIPING APPURTENANCES FOR COLD WATER MAKEUP AND EQUIPMENT DRAINS", + "number": "23 21 13.02", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331487 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Level 1 Area B HVAC Piping (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-11T18:56:19Z" + }, + { + "id": 64581516, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160951176, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143408386, + "additional_page_count": 0, + "attached_at": "2025-08-05T15:21:40Z", + "attachment_id": 5603756227, + "content_type": "application/pdf", + "document_markup_layer_id": 66664577, + "filename": "23 30 00-6.0 - Level 1 Area B HVAC Duct-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-05T15:21:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1XD5BPWRZ84T3QA3JXA3ZAZ?companyId=8089&projectId=2563870&sig=5ef977fabc49147d7053608cf16fcd7d4150f5e7bc1d68efe77b68721893889a", + "version_timestamp": "2025-08-05T15:21:40Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 14, + "workflow_group_number": 3 + }, + { + "id": 160951172, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 160951175, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160951174, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160951173, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160951169, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142070574, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:01:40Z", + "attachment_id": 5544743209, + "content_type": "application/pdf", + "document_markup_layer_id": 65551553, + "filename": "23 30 00 - 6.0 - Level 1 Area B HVAC Duct (SD).pdf", + "markup_updated_at": "2025-07-09T14:47:34Z", + "state": "excluded", + "updated_at": "2025-07-09T14:47:34Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQQVH6B5W4ETFEBVJA1VNFE?companyId=8089&projectId=2563870&sig=10f5532d3bd516f5e06690c82b137c9ad0a513154d7e81bf1b1cd6f3eab978bc", + "version_timestamp": "2025-07-09T14:47:34Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160951170, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160951171, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160951166, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142065736, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:01:40Z", + "attachment_id": 5544743209, + "content_type": "application/pdf", + "document_markup_layer_id": 65551553, + "filename": "23 30 00 - 6.0 - Level 1 Area B HVAC Duct (SD).pdf", + "markup_updated_at": "2025-07-09T14:47:34Z", + "state": "outdated", + "updated_at": "2025-07-09T14:01:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQQVH6B5W4ETFEBVJA1VNFE?companyId=8089&projectId=2563870&sig=10f5532d3bd516f5e06690c82b137c9ad0a513154d7e81bf1b1cd6f3eab978bc", + "version_timestamp": "2025-07-09T14:01:40Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160951168, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160951167, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160951165, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-09T14:00:01Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-05T17:23:52Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-16", + "formatted_number": "23 30 00-6", + "issue_date": "2025-07-09", + "last_distributed_submittal": { + "id": 28289794, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39788905, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5603756227, + "content_type": "application/pdf", + "filename": "23 30 00-6.0 - Level 1 Area B HVAC Duct-SD_H2MG.pdf", + "source_prostore_file_id": 5603756227, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1XD5BPWRZ84T3QA3JXA3ZAZ?companyId=8089&projectId=2563870&sig=5ef977fabc49147d7053608cf16fcd7d4150f5e7bc1d68efe77b68721893889a", + "viewable_document_id": 867146514 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160951176, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-05T17:23:52Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": " Level 1 Area B HVAC Duct (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-05T17:23:52Z" + }, + { + "id": 64581838, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160952196, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142518588, + "additional_page_count": 0, + "attached_at": "2025-07-17T16:36:10Z", + "attachment_id": 5563976061, + "content_type": "application/pdf", + "document_markup_layer_id": 65926297, + "filename": "23 21 13-6.0 - Nexus Manual Valve Paks_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-17T16:36:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CKW2X4PF62DM2D46J4BG7T?companyId=8089&projectId=2563870&sig=f4b6c7b3fcc6810805fa3afc19163f9daa31e25fd253fce533295c7e5f6923f6", + "version_timestamp": "2025-07-17T16:36:10Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-23", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 160952192, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142464755, + "additional_page_count": 0, + "attached_at": "2025-07-16T19:27:53Z", + "attachment_id": 5561544933, + "content_type": "application/pdf", + "document_markup_layer_id": 65880138, + "filename": "232113-06-00 - ACR Sbtl Review - Nexus Manual Valve Paks.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-16T19:27:53Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0AB87JFDKY23WDKG1GHCKCW?companyId=8089&projectId=2563870&sig=73d95cf88b4323d08f0ad48493e5f8eb894bcdea38e7d47df948e410ed03f6f0", + "version_timestamp": "2025-07-16T19:27:53Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-16", + "sent_date": "2025-07-09", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 160952195, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160952194, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160952193, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160952189, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142070297, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:29:41Z", + "attachment_id": 5544788539, + "content_type": "application/pdf", + "document_markup_layer_id": 65551350, + "filename": "23 2113.03 - NEXUS Manual Valve Paks Submittal.pdf", + "markup_updated_at": "2025-07-09T14:44:57Z", + "state": "excluded", + "updated_at": "2025-07-09T14:44:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQRGN5B1VA5XM74YTJ4CZ60?companyId=8089&projectId=2563870&sig=5bf7c6c638e140493fa6a74e982866c2e7463948884837357de369e97a76fb85", + "version_timestamp": "2025-07-09T14:44:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160952190, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160952191, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160952186, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142068626, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:29:41Z", + "attachment_id": 5544788539, + "content_type": "application/pdf", + "document_markup_layer_id": 65551350, + "filename": "23 2113.03 - NEXUS Manual Valve Paks Submittal.pdf", + "markup_updated_at": "2025-07-09T14:44:57Z", + "state": "outdated", + "updated_at": "2025-07-09T14:29:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQRGN5B1VA5XM74YTJ4CZ60?companyId=8089&projectId=2563870&sig=5bf7c6c638e140493fa6a74e982866c2e7463948884837357de369e97a76fb85", + "version_timestamp": "2025-07-09T14:29:41Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160952188, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160952187, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160952185, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-09T14:05:48Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-17T19:47:19Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-23", + "formatted_number": "23 21 13-6", + "issue_date": "2025-07-09", + "last_distributed_submittal": { + "id": 28063078, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39453601, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5563976061, + "content_type": "application/pdf", + "filename": "23 21 13-6.0 - Nexus Manual Valve Paks_ACR_H2MG.pdf", + "source_prostore_file_id": 5563976061, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CKW2X4PF62DM2D46J4BG7T?companyId=8089&projectId=2563870&sig=f4b6c7b3fcc6810805fa3afc19163f9daa31e25fd253fce533295c7e5f6923f6", + "viewable_document_id": 860217139 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160952196, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-17T19:47:19Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037813, + "current_revision_id": 44088326, + "description": "Hydronic Piping", + "label": "23 21 13 - Hydronic Piping", + "number": "23 21 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023743 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Nexus Manual Valve Paks", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-17T19:47:19Z" + }, + { + "id": 64584202, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160963122, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142516977, + "additional_page_count": 0, + "attached_at": "2025-07-17T16:18:12Z", + "attachment_id": 5563906233, + "content_type": "application/pdf", + "document_markup_layer_id": 65926328, + "filename": "23 05 19-1.2 - Gauges, Thermometers and Flow Meters-PD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-17T16:18:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CJV454FTY5SB0GS8YKSXYN?companyId=8089&projectId=2563870&sig=7f34b16d99ee334a52858120d97a00e82be9171caad6febd9b735ffe041aea00", + "version_timestamp": "2025-07-17T16:18:12Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-23", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-16", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -4, + "workflow_group_number": 3 + }, + { + "id": 160963123, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-16", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 160963125, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-23", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-16", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 160963116, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-07-16", + "sent_date": "2025-07-09", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 160963120, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160963119, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160963118, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160963117, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160963113, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142071665, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:54:42Z", + "attachment_id": 5544963665, + "content_type": "application/pdf", + "document_markup_layer_id": 65552455, + "filename": "23 05 19 -1.2 - Gauges, Thermometers and Flow Meters (PD).pdf", + "markup_updated_at": "2025-07-09T14:57:40Z", + "state": "excluded", + "updated_at": "2025-07-09T14:57:40Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQTWWG63MFXPCP27RD4NT9Z?companyId=8089&projectId=2563870&sig=5544789091184c3efc9acf1fa6c651102f3b94c83b4ef0b9a47edf8e275eed9e", + "version_timestamp": "2025-07-09T14:57:40Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160963114, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160963115, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160963110, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142071412, + "additional_page_count": 1, + "attached_at": "2025-07-09T14:54:42Z", + "attachment_id": 5544963665, + "content_type": "application/pdf", + "document_markup_layer_id": 65552455, + "filename": "23 05 19 -1.2 - Gauges, Thermometers and Flow Meters (PD).pdf", + "markup_updated_at": "2025-07-09T14:57:40Z", + "state": "outdated", + "updated_at": "2025-07-09T14:54:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQTWWG63MFXPCP27RD4NT9Z?companyId=8089&projectId=2563870&sig=5544789091184c3efc9acf1fa6c651102f3b94c83b4ef0b9a47edf8e275eed9e", + "version_timestamp": "2025-07-09T14:54:42Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160963112, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160963111, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160963109, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-09T14:54:00Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-23T14:20:45Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-23", + "formatted_number": "23 05 19-1", + "issue_date": "2025-07-09", + "last_distributed_submittal": { + "id": 28127299, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549469, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5563906233, + "content_type": "application/pdf", + "filename": "23 05 19-1.2 - Gauges, Thermometers and Flow Meters-PD_H2MG.pdf", + "source_prostore_file_id": 5563906233, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CJV454FTY5SB0GS8YKSXYN?companyId=8089&projectId=2563870&sig=7f34b16d99ee334a52858120d97a00e82be9171caad6febd9b735ffe041aea00", + "viewable_document_id": 860203237 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160963122, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-23T14:20:45Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037800, + "current_revision_id": 45441195, + "description": "GAUGES, THERMOMETERS AND FLOW METERS", + "label": "23 05 19 - GAUGES, THERMOMETERS AND FLOW METERS", + "number": "23 05 19", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331444 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Gauges, Thermometers and Flow Meters (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-23T14:20:45Z" + }, + { + "id": 64585161, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160966442, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143113785, + "additional_page_count": 0, + "attached_at": "2025-07-29T23:24:50Z", + "attachment_id": 5590249512, + "content_type": "application/pdf", + "document_markup_layer_id": 66424458, + "filename": "23 21 00-3.0 - HVAC Welders Certifications_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-29T23:24:50Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1C7ZFPSTV838XK6G3R7TBKW?companyId=8089&projectId=2563870&sig=a9352af208e65ab74a5fedaaabd79b86f010d63ec13be43823bb73018c59b622", + "version_timestamp": "2025-07-29T23:24:50Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-10", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 8, + "workflow_group_number": 3 + }, + { + "id": 160966435, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed, for record only.\u00a0", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-07-09", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -4, + "workflow_group_number": 2 + }, + { + "id": 160966440, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160966438, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160966437, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160966431, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142073781, + "additional_page_count": 1, + "attached_at": "2025-07-09T15:10:49Z", + "attachment_id": 5545033295, + "content_type": "application/pdf", + "document_markup_layer_id": 65554074, + "filename": "23 2100 - HVAC Welders Certifications Submittal.pdf", + "markup_updated_at": "2025-07-09T15:14:39Z", + "state": "excluded", + "updated_at": "2025-07-09T15:14:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQVT2H4A91WYXJN7830VH7T?companyId=8089&projectId=2563870&sig=a6c16e2c8e8318248f2aecbe1b34dcd4debd4df9d9f994c396d8693951dceff6", + "version_timestamp": "2025-07-09T15:14:39Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160966432, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160966433, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160966428, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142073210, + "additional_page_count": 1, + "attached_at": "2025-07-09T15:10:49Z", + "attachment_id": 5545033295, + "content_type": "application/pdf", + "document_markup_layer_id": 65554074, + "filename": "23 2100 - HVAC Welders Certifications Submittal.pdf", + "markup_updated_at": "2025-07-09T15:14:39Z", + "state": "outdated", + "updated_at": "2025-07-09T15:10:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQVT2H4A91WYXJN7830VH7T?companyId=8089&projectId=2563870&sig=a6c16e2c8e8318248f2aecbe1b34dcd4debd4df9d9f994c396d8693951dceff6", + "version_timestamp": "2025-07-09T15:10:49Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160966430, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160966429, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160966427, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-09T15:10:25Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-30T13:52:43Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-17", + "formatted_number": "23 21 00-3", + "issue_date": "2025-07-09", + "last_distributed_submittal": { + "id": 28214506, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39678256, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5590249512, + "content_type": "application/pdf", + "filename": "23 21 00-3.0 - HVAC Welders Certifications_H2MG.pdf", + "source_prostore_file_id": 5590249512, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1C7ZFPSTV838XK6G3R7TBKW?companyId=8089&projectId=2563870&sig=a9352af208e65ab74a5fedaaabd79b86f010d63ec13be43823bb73018c59b622", + "viewable_document_id": 864901547 + } + ], + "response_name": "Approved", + "submittal_approver_id": 160966442, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-30T13:52:43Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037812, + "current_revision_id": 45441221, + "description": "PIPE AND PIPE FITTINGS - GENERAL", + "label": "23 21 00 - PIPE AND PIPE FITTINGS - GENERAL", + "number": "23 21 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331484 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "HVAC Welders Certifications ", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-07-30T13:52:43Z" + }, + { + "id": 64585433, + "actual_delivery_date": null, + "approvers": [ + { + "id": 160967478, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143113069, + "additional_page_count": 0, + "attached_at": "2025-07-29T22:59:44Z", + "attachment_id": 5590216124, + "content_type": "application/pdf", + "document_markup_layer_id": 66424393, + "filename": "23 74 13-1.1 - Split DX System-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-29T22:59:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1C6JRNB0YVHXBHX0M83JAAW?companyId=8089&projectId=2563870&sig=75338ac87c6dd76bdfcc47b816b9b2131f6988668d6061fcc95b486e6a6614c4", + "version_timestamp": "2025-07-29T22:59:44Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 3, + "workflow_group_number": 3 + }, + { + "id": 160967479, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 160967480, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 160967473, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142509005, + "additional_page_count": 0, + "attached_at": "2025-07-17T15:00:51Z", + "attachment_id": 5563574491, + "content_type": "application/pdf", + "document_markup_layer_id": 65917504, + "filename": "237413-01-01 - ACR Sbtl Review - Split System Air Conditioners.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-17T15:00:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CEDW2W66S1BA3843KWPR8H?companyId=8089&projectId=2563870&sig=423b9db5ed536c6c7cfb24164f5fa5a09200e8aac7471e8cb2383fe10363e6fa", + "version_timestamp": "2025-07-17T15:00:51Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-09", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 160967477, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160967476, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160967475, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160967474, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 160967470, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142074312, + "additional_page_count": 1, + "attached_at": "2025-07-09T15:16:32Z", + "attachment_id": 5545061071, + "content_type": "application/pdf", + "document_markup_layer_id": 65554469, + "filename": "23 7413 - AAON Split DX Systems Resubmittal.pdf", + "markup_updated_at": "2025-07-09T15:19:21Z", + "state": "excluded", + "updated_at": "2025-07-09T15:19:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQW4EH3Q109QVWBB6JVRX5Y?companyId=8089&projectId=2563870&sig=cb806bc78a42bdce2d3d1d13ce9e3bfed277d2b909a1a2fbabbe834950e5c054", + "version_timestamp": "2025-07-09T15:19:21Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": "2025-07-09", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 160967471, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160967472, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-09", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 160967467, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142073984, + "additional_page_count": 1, + "attached_at": "2025-07-09T15:16:32Z", + "attachment_id": 5545061071, + "content_type": "application/pdf", + "document_markup_layer_id": 65554469, + "filename": "23 7413 - AAON Split DX Systems Resubmittal.pdf", + "markup_updated_at": "2025-07-09T15:19:21Z", + "state": "outdated", + "updated_at": "2025-07-09T15:16:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZQW4EH3Q109QVWBB6JVRX5Y?companyId=8089&projectId=2563870&sig=cb806bc78a42bdce2d3d1d13ce9e3bfed277d2b909a1a2fbabbe834950e5c054", + "version_timestamp": "2025-07-09T15:16:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-09", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 160967469, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160967468, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 160967466, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-09T15:16:04Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-30T13:52:17Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-24", + "formatted_number": "23 74 13-1", + "issue_date": "2025-07-09", + "last_distributed_submittal": { + "id": 28214495, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39678239, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5590216124, + "content_type": "application/pdf", + "filename": "23 74 13-1.1 - Split DX System-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5590216124, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1C6JRNB0YVHXBHX0M83JAAW?companyId=8089&projectId=2563870&sig=75338ac87c6dd76bdfcc47b816b9b2131f6988668d6061fcc95b486e6a6614c4", + "viewable_document_id": 864894974 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 160967478, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-30T13:52:17Z" + }, + "lead_time": 98, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": "2025-09-01", + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 37096850, + "current_revision_id": 45441255, + "description": "SPLIT DX SYSTEMS", + "label": "23 74 13 - SPLIT DX SYSTEMS", + "number": "23 74 13", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331523 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-05-05", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Split DX System (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-30T13:52:17Z" + }, + { + "id": 64613869, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161064003, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142838536, + "additional_page_count": 0, + "attached_at": "2025-07-24T04:32:33Z", + "attachment_id": 5578009052, + "content_type": "application/pdf", + "document_markup_layer_id": 66419339, + "filename": "232123-3.0 \u2013 Pumps PD \u2013 H2MG Response.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-24T04:32:33Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0XB8A7C7B9JVKMY8QY7R0N9?companyId=8089&projectId=2563870&sig=5c533934fc400960ee7e22fc18dbde87f075027712a6e82abd10e8bb05e7f769", + "version_timestamp": "2025-07-24T04:32:33Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": "2025-07-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -1, + "workflow_group_number": 3 + }, + { + "id": 161064004, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-17", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 161064005, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-17", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 161063999, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142509858, + "additional_page_count": 0, + "attached_at": "2025-07-17T15:08:59Z", + "attachment_id": 5563608059, + "content_type": "application/pdf", + "document_markup_layer_id": 65917554, + "filename": "232123-01-02 - ACR Sbtl Review - Hydronic Pumps.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-17T15:08:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0CEWBA3VN4DEASF25CR942T?companyId=8089&projectId=2563870&sig=29a1fea87088f84781ce48adb727b5b38d7a5505f6bd3ceae317d621a9c19e62", + "version_timestamp": "2025-07-17T15:08:59Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-10", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 161064002, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161064001, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161064000, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161063997, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142156276, + "additional_page_count": 1, + "attached_at": "2025-07-10T13:00:52Z", + "attachment_id": 5547440474, + "content_type": "application/pdf", + "document_markup_layer_id": 65622510, + "filename": "23 2123 - Hydronic Pumps Resubmittal 3.0.pdf", + "markup_updated_at": "2025-07-10T17:01:36Z", + "state": "excluded", + "updated_at": "2025-07-10T17:01:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZT6NY46WJE6FJQM7481BD4Q?companyId=8089&projectId=2563870&sig=ad356a0638e1a6fafd8c1e5f30140fb01026e573314d789bdc322939dd3d3856", + "version_timestamp": "2025-07-10T17:01:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": "2025-07-10", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 161063998, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-10", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161063994, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142132917, + "additional_page_count": 1, + "attached_at": "2025-07-10T13:00:52Z", + "attachment_id": 5547440474, + "content_type": "application/pdf", + "document_markup_layer_id": 65622510, + "filename": "23 2123 - Hydronic Pumps Resubmittal 3.0.pdf", + "markup_updated_at": "2025-07-10T17:01:36Z", + "state": "outdated", + "updated_at": "2025-07-10T13:00:52Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZT6NY46WJE6FJQM7481BD4Q?companyId=8089&projectId=2563870&sig=ad356a0638e1a6fafd8c1e5f30140fb01026e573314d789bdc322939dd3d3856", + "version_timestamp": "2025-07-10T13:00:52Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-10", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 161063996, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 161063995, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 161063993, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-17", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-10T12:58:52Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-24T04:33:28Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 2026297, + "name": "David Schad" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10946327, + "name": "Maried Salinas" + }, + { + "id": 12977774, + "name": "Marshall Schiffbauer" + }, + { + "id": 6675229, + "name": "Matthew Grimes" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 12894778, + "name": "Ravi Boosani" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-07-24", + "formatted_number": "23 21 23-1", + "issue_date": "2025-07-10", + "last_distributed_submittal": { + "id": 28140099, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39567613, + "comment": null, + "distributed_attachments": [ + { + "id": 5578009052, + "content_type": "application/pdf", + "filename": "232123-3.0 \u2013 Pumps PD \u2013 H2MG Response.pdf", + "source_prostore_file_id": 5578009052, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0XB8A7C7B9JVKMY8QY7R0N9?companyId=8089&projectId=2563870&sig=5c533934fc400960ee7e22fc18dbde87f075027712a6e82abd10e8bb05e7f769", + "viewable_document_id": 862749114 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 161064003, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12977774, + "initials": "MS", + "name": "Marshall Schiffbauer", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-24T04:33:28Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037814, + "current_revision_id": 45441228, + "description": "PUMPS", + "label": "23 21 23 - PUMPS", + "number": "23 21 23", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331494 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydronic Pumps (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-24T04:33:28Z" + }, + { + "id": 64670785, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161433035, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142470108, + "additional_page_count": 0, + "attached_at": "2025-07-16T20:16:28Z", + "attachment_id": 5561745482, + "content_type": "application/pdf", + "document_markup_layer_id": 65977780, + "filename": "05 12 00-17.0 - Area AN Deck Opening Frames-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-16T20:16:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0AE1Y6K9FEK0CCSXWCVK5TG?companyId=8089&projectId=2563870&sig=692c2eb63fb8d5b9bbd215fed1a1fb37529b1cd47420593ab9ac21fc17438050", + "version_timestamp": "2025-07-16T20:16:28Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-29", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-16", + "sent_date": "2025-07-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 161263977, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142348537, + "additional_page_count": 0, + "attached_at": "2025-07-15T13:04:30Z", + "attachment_id": 5556848347, + "content_type": "application/pdf", + "document_markup_layer_id": 65782343, + "filename": "05 12 00 18.0 - Area AN Deck Opening Frames (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-15T13:04:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K072YXE39DFRWXTRJ7KMPDFM?companyId=8089&projectId=2563870&sig=229df148d2c8630b504cf46c19eb685f03cbe30e7369fded3ad151379c51c3d7", + "version_timestamp": "2025-07-15T13:04:30Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-07-18", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-15", + "sent_date": "2025-07-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 161263976, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161263975, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142242940, + "additional_page_count": 0, + "attached_at": "2025-07-11T20:26:51Z", + "attachment_id": 5552047758, + "content_type": "application/pdf", + "document_markup_layer_id": 65781194, + "filename": "05 12 00 17.0 - Area AN Deck Opening Frames (SD).pdf", + "markup_updated_at": "2025-07-15T12:59:01Z", + "state": "excluded", + "updated_at": "2025-07-11T20:26:51Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZXJP83VGABDZG6D5K1P72SZ?companyId=8089&projectId=2563870&sig=5aa32fb372dc83d6f61a6bb11e318ff5ab4589c261bd2d5a24c99de86d18d82e", + "version_timestamp": "2025-07-11T20:26:51Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-25", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-06-10", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -33, + "workflow_group_number": 0 + }, + { + "id": 161263974, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-11T20:23:45Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-18T16:50:11Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-29", + "formatted_number": "051200-17", + "issue_date": "2025-07-11", + "last_distributed_submittal": { + "id": 28075092, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39471853, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5561745482, + "content_type": "application/pdf", + "filename": "05 12 00-17.0 - Area AN Deck Opening Frames-SD_STR.pdf", + "source_prostore_file_id": 5561745482, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0AE1Y6K9FEK0CCSXWCVK5TG?companyId=8089&projectId=2563870&sig=692c2eb63fb8d5b9bbd215fed1a1fb37529b1cd47420593ab9ac21fc17438050", + "viewable_document_id": 859820267 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 161433035, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Thornton,
\nPlease furnish as noted and field coordinate layout and opening size.
", + "sent_at": "2025-07-18T16:50:11Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "17", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-07-25", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area AN Deck Opening Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-18T16:50:11Z" + }, + { + "id": 64670828, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161437776, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142470357, + "additional_page_count": 0, + "attached_at": "2025-07-16T20:19:02Z", + "attachment_id": 5561757839, + "content_type": "application/pdf", + "document_markup_layer_id": 65977641, + "filename": "05 12 00-18.0 - Area AS Deck Opening Frames-SD_STR.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-16T20:19:02Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0AE7A5EZ6HG7SH8YSJ2RJC2?companyId=8089&projectId=2563870&sig=89c4a3d5ba87a7657149c9d41d81ddd3eed0d06819eb7445322378521b967913", + "version_timestamp": "2025-07-16T20:19:02Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 10, + "due_date": "2025-07-29", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-16", + "sent_date": "2025-07-15", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -9, + "workflow_group_number": 2 + }, + { + "id": 161264242, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142350561, + "additional_page_count": 0, + "attached_at": "2025-07-15T13:26:07Z", + "attachment_id": 5556931011, + "content_type": "application/pdf", + "document_markup_layer_id": 65786840, + "filename": "05 12 00 18.0 - Area AS Deck Opening Frames (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-15T13:26:07Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0746KY203DTKDNZ7WNJ8B17?companyId=8089&projectId=2563870&sig=0dac40af6157eb75a060c4ea47748ad84c9d572094879b1e26de5ce432c6d023", + "version_timestamp": "2025-07-15T13:26:07Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-15", + "sent_date": "2025-07-11", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -4, + "workflow_group_number": 1 + }, + { + "id": 161264240, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-11", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161264238, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142254555, + "additional_page_count": 0, + "attached_at": "2025-07-12T18:46:00Z", + "attachment_id": 5552715493, + "content_type": "application/pdf", + "document_markup_layer_id": 65781745, + "filename": "05 12 00 18.0 - Area AS Deck Opening Frames (SD).pdf", + "markup_updated_at": "2025-07-15T13:24:07Z", + "state": "excluded", + "updated_at": "2025-07-12T18:46:00Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01JZZZ9XFR6JZ3M72DFGNYBNA1?companyId=8089&projectId=2563870&sig=3653004002c61588bd010b94105f79341dd744da7445634e239ab66ef0f4ab39", + "version_timestamp": "2025-07-12T18:46:00Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-12", + "sent_date": "2025-07-12", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 161264235, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-12", + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-11T20:24:56Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-18T16:41:48Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-29", + "formatted_number": "051200-18", + "issue_date": "2025-07-11", + "last_distributed_submittal": { + "id": 28074920, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39471629, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5561757839, + "content_type": "application/pdf", + "filename": "05 12 00-18.0 - Area AS Deck Opening Frames-SD_STR.pdf", + "source_prostore_file_id": 5561757839, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0AE7A5EZ6HG7SH8YSJ2RJC2?companyId=8089&projectId=2563870&sig=89c4a3d5ba87a7657149c9d41d81ddd3eed0d06819eb7445322378521b967913", + "viewable_document_id": 859822085 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 161437776, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "Thornton,
\nPlease furnish as noted and field coordinate layout and opening size.
", + "sent_at": "2025-07-18T16:41:48Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "18", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-07-25", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-20", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area AS Deck Opening Frames (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-07-18T16:41:48Z" + }, + { + "id": 64675600, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163729349, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143761287, + "additional_page_count": 0, + "attached_at": "2025-08-12T15:46:16Z", + "attachment_id": 5619259433, + "content_type": "application/pdf", + "document_markup_layer_id": 66961526, + "filename": "05 50 00-1.2 - Metal Fabrications Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-12T15:46:16Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FFAGV759VZ8NJJDDZAD101?companyId=8089&projectId=2563870&sig=e4036392ab31f743683333ff51c17e5bceece699041c5a5d5581b6c91185f0e3", + "version_timestamp": "2025-08-12T15:46:16Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-08-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 161281806, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143756077, + "additional_page_count": 0, + "attached_at": "2025-08-12T15:00:37Z", + "attachment_id": 5619065458, + "content_type": "application/pdf", + "document_markup_layer_id": 66960204, + "filename": "05 50 00-1.2 - Metal Fabrications Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-08-12T15:00:37Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FCQQEWBJFA2TCWCXBJY1VX?companyId=8089&projectId=2563870&sig=b5270660e1bc36b27c5948954c8bda5a26a6d1ef2409eb71a56fc0842d3c439d", + "version_timestamp": "2025-08-12T15:00:37Z" + }, + { + "id": 143488665, + "additional_page_count": 0, + "attached_at": "2025-08-06T16:44:31Z", + "attachment_id": 5607237697, + "content_type": "application/pdf", + "document_markup_layer_id": 66771504, + "filename": "05 50 00-1.2 - Metal Fabrications Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-08-06T16:44:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2049AW08BDFA2YRC71KHT86?companyId=8089&projectId=2563870&sig=528befa16a601ef28fcf16925afcc4fa34711dfb3cd639132fce9030f0e50c91", + "version_timestamp": "2025-08-06T16:44:31Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-08-26", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-07-25", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -10, + "workflow_group_number": 2 + }, + { + "id": 161281805, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142953758, + "additional_page_count": 0, + "attached_at": "2025-07-25T20:23:01Z", + "attachment_id": 5583166411, + "content_type": "application/pdf", + "document_markup_layer_id": 66701215, + "filename": "05 50 00 1.2 - Metal Fabrications_Roof, Pit, Ship Ladders (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-25T20:23:01Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K11M0CV1FC8730PD7MFXGAG2?companyId=8089&projectId=2563870&sig=28e7756eeb5df15f25f9eb1443bbceff2e60d6910ec272270bf65e9ae5ddae23", + "version_timestamp": "2025-07-25T20:23:01Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-08-01", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-25", + "sent_date": "2025-07-25", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 161281804, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-25", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161281803, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142951478, + "additional_page_count": 0, + "attached_at": "2025-07-25T19:51:44Z", + "attachment_id": 5583078207, + "content_type": "application/pdf", + "document_markup_layer_id": 66281233, + "filename": "05 50 00 1.2 - Metal Fabrications_Roof, Pit, Ship Ladders (SD).pdf", + "markup_updated_at": "2025-07-25T20:13:34Z", + "state": "excluded", + "updated_at": "2025-07-25T19:51:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K11J83TRSCNRF0YKGDFA7GYZ?companyId=8089&projectId=2563870&sig=7c693518a1569606868e3d51cfacee80e0712edd7b59a877df475b55be86c193", + "version_timestamp": "2025-07-25T19:51:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-18", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-22", + "sent_date": "2025-07-12", + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": 2, + "workflow_group_number": 0 + }, + { + "id": 161281802, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-12", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-12T17:55:39Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-12T15:53:21Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-19", + "formatted_number": "055000-1", + "issue_date": "2025-07-12", + "last_distributed_submittal": { + "id": 28378373, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39920820, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5619259433, + "content_type": "application/pdf", + "filename": "05 50 00-1.2 - Metal Fabrications Roof, Pit and Ship Ladders-SD_STR_FGMA.pdf", + "source_prostore_file_id": 5619259433, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2FFAGV759VZ8NJJDDZAD101?companyId=8089&projectId=2563870&sig=e4036392ab31f743683333ff51c17e5bceece699041c5a5d5581b6c91185f0e3", + "viewable_document_id": 869868080 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 163729349, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor_name": "Thornton Steel San Antonio, LLC" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See updated response confirming wall thickness on sheet E30 and E31.
", + "sent_at": "2025-08-12T15:53:21Z" + }, + "lead_time": 31, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 9943247, + "name": "Nathan Strange" + }, + "required_on_site_date": "2025-08-20", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037661, + "current_revision_id": 45441068, + "description": "METAL FABRICATIONS", + "label": "055000 - METAL FABRICATIONS", + "number": "055000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331054 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-06-29", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Metal Fabrications: Roof, Pit and Ship Ladders (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-12T15:53:21Z" + }, + { + "id": 64675621, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164257574, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161281927, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144094990, + "additional_page_count": 0, + "attached_at": "2025-08-19T14:22:05Z", + "attachment_id": 5634250112, + "content_type": "application/pdf", + "document_markup_layer_id": 67284237, + "filename": "05 12 00 19.0 - Area B Roof Deck Opening Frames (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-19T14:22:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31BA6KN48EV7BS4S8XCJY20?companyId=8089&projectId=2563870&sig=5cbbca09276b998febdf4b6b535e49f244500ade9325465ebfa8c8fdaffd1ea8", + "version_timestamp": "2025-08-19T14:22:05Z" + } + ], + "comment": "Please review for record.", + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-12", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 161281926, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-12", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161281924, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143741901, + "additional_page_count": 0, + "attached_at": "2025-08-12T12:32:59Z", + "attachment_id": 5618497258, + "content_type": "application/pdf", + "document_markup_layer_id": 67274605, + "filename": "50005 Seq 567 RF ofa.pdf", + "markup_updated_at": "2025-08-19T14:17:21Z", + "state": "excluded", + "updated_at": "2025-08-12T12:32:59Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2F49B9MHM03NHG4C4C18KZ0?companyId=8089&projectId=2563870&sig=df1a1aa94cb92b0e6664028ff3929f61baf966674e4d208559f4875ae52fcb73", + "version_timestamp": "2025-08-12T12:32:59Z" + } + ], + "comment": "These were emailed 8-7-25", + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": null, + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": 11, + "workflow_group_number": 0 + }, + { + "id": 161281925, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-07-12T18:22:24Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-09-02", + "formatted_number": "051200-19", + "issue_date": "2025-07-12", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "19", + "private": false, + "received_date": null, + "received_from": { + "id": 9943247, + "name": "Nathan Strange" + }, + "required_on_site_date": "2025-08-14", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-07-10", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area B Deck Opening Frames", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-19T14:22:05Z" + }, + { + "id": 64682274, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161310264, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142615907, + "additional_page_count": 0, + "attached_at": "2025-07-19T03:58:42Z", + "attachment_id": 5568125211, + "content_type": "application/pdf", + "document_markup_layer_id": 66027893, + "filename": "26 22 13-3.3 - Low volt Transformers-PD_ACR_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-19T03:58:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GCHRM3G95RMPRG26K85H1K?companyId=8089&projectId=2563870&sig=08eac40570c23767be2488a823f9467675d754158ac42796fad45d21a9db918f", + "version_timestamp": "2025-07-19T03:58:42Z" + } + ], + "comment": "See attached response from Engineers.", + "days_to_respond": 5, + "due_date": "2025-07-25", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-18", + "sent_date": "2025-07-18", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 161310266, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-18", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 161310265, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-18", + "user": { + "id": 10881261, + "name": "Steve Hafer" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 161310261, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142609466, + "additional_page_count": 0, + "attached_at": "2025-07-18T21:14:14Z", + "attachment_id": 5567861813, + "content_type": "application/pdf", + "document_markup_layer_id": 65997259, + "filename": "262213-01-03 - ACR Sbtl Review - Transformer.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-18T21:14:14Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0FP68EVX9N3P5FGMHAJMDFC?companyId=8089&projectId=2563870&sig=a50cb1171878340b7ab9d61210a3bd9744096f9cde4e9067f2332513bcf85dbf", + "version_timestamp": "2025-07-18T21:14:14Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-18", + "sent_date": "2025-07-14", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -6, + "workflow_group_number": 2 + }, + { + "id": 161310263, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 10716012, + "name": "Alma Mcelroy" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161310262, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-07-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161310258, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142284643, + "additional_page_count": 1, + "attached_at": "2025-07-14T14:57:15Z", + "attachment_id": 5554174587, + "content_type": "application/pdf", + "document_markup_layer_id": 65728002, + "filename": "26 22 13 - 3.0 - Low Volt Transformers (PD).pdf", + "markup_updated_at": "2025-07-14T14:59:04Z", + "state": "excluded", + "updated_at": "2025-07-14T14:59:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04Q16CXTQCM5EN7ZRT9GM9Q?companyId=8089&projectId=2563870&sig=e30a7c9a255fb2d80d6f5cb5ae7663628616ee35eec8c63c728d684b0deaa8d9", + "version_timestamp": "2025-07-14T14:59:04Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 161310259, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161310260, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-07-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161310255, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142284436, + "additional_page_count": 1, + "attached_at": "2025-07-14T14:57:15Z", + "attachment_id": 5554174587, + "content_type": "application/pdf", + "document_markup_layer_id": 65728002, + "filename": "26 22 13 - 3.0 - Low Volt Transformers (PD).pdf", + "markup_updated_at": "2025-07-14T14:59:04Z", + "state": "outdated", + "updated_at": "2025-07-14T14:57:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K04Q16CXTQCM5EN7ZRT9GM9Q?companyId=8089&projectId=2563870&sig=e30a7c9a255fb2d80d6f5cb5ae7663628616ee35eec8c63c728d684b0deaa8d9", + "version_timestamp": "2025-07-14T14:57:15Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-14", + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 161310256, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 161310257, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-14T13:38:11Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-07-23T14:21:27Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 11495137, + "name": "Chase Heffernan" + }, + { + "id": 9581149, + "name": "Chris Durocher" + }, + { + "id": 13263384, + "name": "Corey Vorn Kahl" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 11699254, + "name": "James Peebles" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 5267131, + "name": "Jeff Crim" + }, + { + "id": 11295900, + "name": "Joseph Lowery" + }, + { + "id": 1400265, + "name": "Justin Tumlinson" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 10145479, + "name": "Terri Lyon" + } + ], + "drawing_ids": [], + "due_date": "2025-07-25", + "formatted_number": "262213-3", + "issue_date": "2025-07-14", + "last_distributed_submittal": { + "id": 28127324, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549509, + "comment": "See attached response from Engineers.
", + "distributed_attachments": [ + { + "id": 5568125211, + "content_type": "application/pdf", + "filename": "26 22 13-3.3 - Low volt Transformers-PD_ACR_H2MG.pdf", + "source_prostore_file_id": 5568125211, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GCHRM3G95RMPRG26K85H1K?companyId=8089&projectId=2563870&sig=08eac40570c23767be2488a823f9467675d754158ac42796fad45d21a9db918f", + "viewable_document_id": 860941031 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 161310264, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1400265, + "initials": "JT", + "name": "Justin Tumlinson", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 5267131, + "initials": "JC", + "name": "Jeff Crim", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9581149, + "initials": "CD", + "name": "Chris Durocher", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11295900, + "initials": "JL", + "name": "Joseph Lowery", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12350818, + "initials": "CB", + "name": "Caleb Booth", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13263384, + "initials": "CV", + "name": "Corey Vorn Kahl", + "vendor_name": "Tumlinson Electric, LLC" + } + ], + "message": "", + "sent_at": "2025-07-23T14:21:27Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "3", + "scheduled_task": null, + "specification_section": { + "id": 36586613, + "current_revision_id": 44794161, + "description": "High Efficiency Dry-type Distribution XFMR", + "label": "262213 - High Efficiency Dry-type Distribution XFMR", + "number": "262213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": null + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Low volt Transformers (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-23T14:21:27Z" + }, + { + "id": 64705757, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161430778, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142616076, + "additional_page_count": 0, + "attached_at": "2025-07-19T05:23:46Z", + "attachment_id": 5568140643, + "content_type": "application/pdf", + "document_markup_layer_id": 66032032, + "filename": "04 20 00-8.0 - Brick sample_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-19T05:23:46Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GJ6A1AWX528CQTER7NCTYZ?companyId=8089&projectId=2563870&sig=56686c8840e7fc1855cbb08bd8841a578239f821e9f3094e28ffd6538171a6a1", + "version_timestamp": "2025-07-19T05:23:46Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-07-24", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-19", + "sent_date": "2025-07-17", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 161430936, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142348348, + "additional_page_count": 1, + "attached_at": "2025-07-15T12:55:36Z", + "attachment_id": 5556820408, + "content_type": "application/pdf", + "document_markup_layer_id": 65781415, + "filename": "04200-8.0- Brick Sample.pdf", + "markup_updated_at": "2025-07-15T13:02:45Z", + "state": "excluded", + "updated_at": "2025-07-15T13:02:45Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K072F2E8FW4J9QFCTP19G37F?companyId=8089&projectId=2563870&sig=b1a312d37758d13bfed7de2da904b98780419b48c9314b4b776c7bfbe23e278c", + "version_timestamp": "2025-07-15T13:02:45Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-17", + "sent_date": "2025-07-15", + "user": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "variance": -3, + "workflow_group_number": 1 + }, + { + "id": 161430776, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-15", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161430777, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-15", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161430775, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142347771, + "additional_page_count": 1, + "attached_at": "2025-07-15T12:55:36Z", + "attachment_id": 5556820408, + "content_type": "application/pdf", + "document_markup_layer_id": 65781415, + "filename": "04200-8.0- Brick Sample.pdf", + "markup_updated_at": "2025-07-15T13:02:45Z", + "state": "outdated", + "updated_at": "2025-07-15T12:55:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K072F2E8FW4J9QFCTP19G37F?companyId=8089&projectId=2563870&sig=b1a312d37758d13bfed7de2da904b98780419b48c9314b4b776c7bfbe23e278c", + "version_timestamp": "2025-07-15T12:55:36Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-15", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-14T20:54:26Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-23T14:30:58Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-24", + "formatted_number": "042000-8", + "issue_date": "2025-07-14", + "last_distributed_submittal": { + "id": 28127631, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549904, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5568140643, + "content_type": "application/pdf", + "filename": "04 20 00-8.0 - Brick sample_FGMA.pdf", + "source_prostore_file_id": 5568140643, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GJ6A1AWX528CQTER7NCTYZ?companyId=8089&projectId=2563870&sig=56686c8840e7fc1855cbb08bd8841a578239f821e9f3094e28ffd6538171a6a1", + "viewable_document_id": 860943813 + } + ], + "response_name": "Approved", + "submittal_approver_id": 161430778, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13654133, + "initials": "DD", + "name": "Daniel Daghestani", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-07-23T14:30:58Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Brick sample", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-07-23T14:30:59Z" + }, + { + "id": 64705818, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161433231, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-12", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 161433230, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142348722, + "additional_page_count": 1, + "attached_at": "2025-07-15T13:06:05Z", + "attachment_id": 5556854729, + "content_type": "application/pdf", + "document_markup_layer_id": 65781757, + "filename": "04200-9.0- Stone Sample.pdf", + "markup_updated_at": "2025-07-15T13:06:57Z", + "state": "current", + "updated_at": "2025-07-15T13:06:57Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0732BRXFCGHSQYDRK1GH10M?companyId=8089&projectId=2563870&sig=1cafce21f5ee5919c3a2d943d21b66a5ce48cc139f0caf4914c2e0cdd67d4d6d", + "version_timestamp": "2025-07-15T13:06:57Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-12", + "sent_date": "2025-07-15", + "user": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "variance": 15, + "workflow_group_number": 1 + }, + { + "id": 161433228, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-15", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161433229, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-15", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161433227, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142348666, + "additional_page_count": 1, + "attached_at": "2025-07-15T13:06:05Z", + "attachment_id": 5556854729, + "content_type": "application/pdf", + "document_markup_layer_id": 65781757, + "filename": "04200-9.0- Stone Sample.pdf", + "markup_updated_at": "2025-07-15T13:06:57Z", + "state": "outdated", + "updated_at": "2025-07-15T13:06:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0732BRXFCGHSQYDRK1GH10M?companyId=8089&projectId=2563870&sig=1cafce21f5ee5919c3a2d943d21b66a5ce48cc139f0caf4914c2e0cdd67d4d6d", + "version_timestamp": "2025-07-15T13:06:05Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-22", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-15", + "sent_date": null, + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-07-14T20:55:27Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-17T13:19:11Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-19", + "formatted_number": "042000-9", + "issue_date": "2025-07-14", + "last_distributed_submittal": { + "id": 28052999, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39439528, + "comment": "", + "distributed_attachments": [ + { + "id": 5556854729, + "content_type": "application/pdf", + "filename": "04200-9.0- Stone Sample.pdf", + "source_prostore_file_id": 5556854729, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0732BRXFCGHSQYDRK1GH10M?companyId=8089&projectId=2563870&sig=1cafce21f5ee5919c3a2d943d21b66a5ce48cc139f0caf4914c2e0cdd67d4d6d", + "viewable_document_id": 858953629 + } + ], + "response_name": "Submitted", + "submittal_approver_id": 161433227, + "submittal_response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "submittal_response_id": 23348889, + "user": { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + "user_id": 11803244 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13654133, + "initials": "DD", + "name": "Daniel Daghestani", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-07-17T13:19:11Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "9", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Stone Sample", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-14T16:54:59Z" + }, + { + "id": 64705889, + "actual_delivery_date": null, + "approvers": [ + { + "id": 161394766, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142616070, + "additional_page_count": 0, + "attached_at": "2025-07-19T05:19:55Z", + "attachment_id": 5568140040, + "content_type": "application/pdf", + "document_markup_layer_id": 66032049, + "filename": "04 20 00-7.0 - Grout and Mortar Sample_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-19T05:19:55Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GHZ4MA7F5GJDW1FQT76NDB?companyId=8089&projectId=2563870&sig=fc1f72f63d0b3d79887bbd407381cdb4ca057c5613bcece5eb2a323d45862f75", + "version_timestamp": "2025-07-19T05:19:55Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-19", + "sent_date": "2025-07-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 0, + "workflow_group_number": 2 + }, + { + "id": 161396386, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142324331, + "additional_page_count": 1, + "attached_at": "2025-07-14T21:04:44Z", + "attachment_id": 5555760925, + "content_type": "application/pdf", + "document_markup_layer_id": 65761839, + "filename": "042000-7.0- Grout and Mortar Sample.pdf", + "markup_updated_at": "2025-07-14T21:08:04Z", + "state": "excluded", + "updated_at": "2025-07-14T21:08:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05C20BEHYJ0EYNBCTXXHJGZ?companyId=8089&projectId=2563870&sig=a77642045248c1418fe51ee04ac996116e0ff6e53e7dad60ef3d12204e6a73d6", + "version_timestamp": "2025-07-14T21:08:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-14", + "user": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 161394764, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161394765, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 161394763, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142324016, + "additional_page_count": 1, + "attached_at": "2025-07-14T21:04:44Z", + "attachment_id": 5555760925, + "content_type": "application/pdf", + "document_markup_layer_id": 65761839, + "filename": "042000-7.0- Grout and Mortar Sample.pdf", + "markup_updated_at": "2025-07-14T21:08:04Z", + "state": "outdated", + "updated_at": "2025-07-14T21:04:44Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05C20BEHYJ0EYNBCTXXHJGZ?companyId=8089&projectId=2563870&sig=a77642045248c1418fe51ee04ac996116e0ff6e53e7dad60ef3d12204e6a73d6", + "version_timestamp": "2025-07-14T21:04:44Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-21", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-14", + "sent_date": "2025-07-14", + "user": { + "id": 11803244, + "name": "Hayden Brown" + }, + "variance": -5, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-14T20:56:44Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-23T14:31:14Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-21", + "formatted_number": "042000-7", + "issue_date": "2025-07-14", + "last_distributed_submittal": { + "id": 28127642, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39549921, + "comment": null, + "distributed_attachments": [ + { + "id": 5568140040, + "content_type": "application/pdf", + "filename": "04 20 00-7.0 - Grout and Mortar Sample_FGMA.pdf", + "source_prostore_file_id": 5568140040, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0GHZ4MA7F5GJDW1FQT76NDB?companyId=8089&projectId=2563870&sig=fc1f72f63d0b3d79887bbd407381cdb4ca057c5613bcece5eb2a323d45862f75", + "viewable_document_id": 860943751 + } + ], + "response_name": "Approved as Noted", + "submittal_approver_id": 161394766, + "submittal_response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "submittal_response_id": 23348895, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11803244, + "initials": "HB", + "name": "Hayden Brown", + "vendor_name": "Trinity Masonry Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 13654133, + "initials": "DD", + "name": "Daniel Daghestani", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "", + "sent_at": "2025-07-23T14:31:14Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": { + "id": 11803244, + "name": "Hayden Brown" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 32749732, + "name": "Trinity Masonry Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037655, + "current_revision_id": 45441062, + "description": "Unit Masonry", + "label": "042000 - Unit Masonry", + "number": "042000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331017 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Grout and Mortar Sample ", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-07-23T14:31:14Z" + }, + { + "id": 64706033, + "actual_delivery_date": null, + "approvers": [], + "associated_attachments": [ + { + "id": 142323452, + "additional_page_count": 0, + "attached_at": "2025-07-14T20:58:21Z", + "attachment_id": 5555738535, + "content_type": "application/pdf", + "document_markup_layer_id": null, + "filename": "0292_001.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-14T20:58:21Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K05BPAZSBJV4DFWJPTAZV1G9?companyId=8089&projectId=2563870&sig=675acf25ac522412c793d83f003bf77b15eec1f4170cce206b7995088e5a2a09", + "version_timestamp": "2025-07-14T20:58:21Z" + } + ], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-14T20:58:21Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": null, + "formatted_number": "12", + "issue_date": "2025-07-14", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "12", + "private": false, + "received_date": null, + "received_from": null, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": null, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Glass Sample", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-07-15T13:11:57Z" + }, + { + "id": 64904944, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162116854, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162116853, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162116852, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162116851, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-29", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": true, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [ + { + "id": 142755795, + "additional_page_count": 0, + "attached_at": "2025-07-22T20:54:22Z", + "attachment_id": 5574390224, + "content_type": "application/pdf", + "document_markup_layer_id": 66140625, + "filename": "aisd_-_houston_es-transmittal#6-optigray_glass_sample-202507221938.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-22T20:54:22Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0SYJ97FPSZ436K95PKK19AV?companyId=8089&projectId=2563870&sig=66c1233014c716e5e290c14fca23778709da303847b5a125b2ce28dffc402399", + "version_timestamp": "2025-07-22T20:54:22Z" + } + ], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-22T20:54:22Z", + "created_by": { + "id": 13654133, + "name": "Daniel Daghestani" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-05", + "formatted_number": "072100-3", + "issue_date": "2025-07-22", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": "2025-07-22", + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037674, + "current_revision_id": 44088233, + "description": "Thermal Insulation", + "label": "072100 - Thermal Insulation", + "number": "072100", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023223 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2757402, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "004.A", + "specification_section_id": null, + "submittal_ids": [ + 64705818, + 59448226, + 64705889, + 64705757, + 64904944, + 59442990, + 59448471, + 59443031, + 59442941, + 59448558, + 59443343, + 59443141, + 59443057 + ], + "title": "Trinity Masonry Company Action Submittals", + "updated_at": "2025-08-12T15:36:01Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "OptiGray Glass Sample", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-07-22T20:54:22Z" + }, + { + "id": 64925390, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162187987, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143384610, + "additional_page_count": 0, + "attached_at": "2025-08-05T04:48:15Z", + "attachment_id": 5602642531, + "content_type": "application/pdf", + "document_markup_layer_id": 66648289, + "filename": "23 21 13.03-1.0 - Level 2 Area B HVAC Piping-SD_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-05T04:48:15Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1W8WSQ9XKKJ2T0V61ZV3XJ4?companyId=8089&projectId=2563870&sig=b67e8fd1e2a0dbeaa6fc103ee2e513c2444bd7693738344166dc24c15085331a", + "version_timestamp": "2025-08-05T04:48:15Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-04", + "sent_date": "2025-07-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 2, + "workflow_group_number": 3 + }, + { + "id": 162187983, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 162187986, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162187985, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162187984, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162187980, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142837016, + "additional_page_count": 1, + "attached_at": "2025-07-23T16:34:16Z", + "attachment_id": 5576387105, + "content_type": "application/pdf", + "document_markup_layer_id": 66166203, + "filename": "51005_Houston ES - LVL 2 Area B HVAC Piping Shop Dwg 7-9-25.pdf", + "markup_updated_at": "2025-07-24T02:27:26Z", + "state": "excluded", + "updated_at": "2025-07-24T02:27:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0W253HZWAQRZESG83DRJRW8?companyId=8089&projectId=2563870&sig=320a24c02a226610797dba7dfbe7ac988a68a04b9e8c98ff386423f13283e4ed", + "version_timestamp": "2025-07-24T02:27:26Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": "2025-07-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162187981, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162187982, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162187977, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142800149, + "additional_page_count": 1, + "attached_at": "2025-07-23T16:34:16Z", + "attachment_id": 5576387105, + "content_type": "application/pdf", + "document_markup_layer_id": 66166203, + "filename": "51005_Houston ES - LVL 2 Area B HVAC Piping Shop Dwg 7-9-25.pdf", + "markup_updated_at": "2025-07-24T02:27:26Z", + "state": "outdated", + "updated_at": "2025-07-23T16:34:17Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0W253HZWAQRZESG83DRJRW8?companyId=8089&projectId=2563870&sig=320a24c02a226610797dba7dfbe7ac988a68a04b9e8c98ff386423f13283e4ed", + "version_timestamp": "2025-07-23T16:34:16Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 162187979, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162187978, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162187976, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-23T16:33:55Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-05T14:45:39Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-07-31", + "formatted_number": "232113.03-1", + "issue_date": "2025-07-23", + "last_distributed_submittal": { + "id": 28285137, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39782358, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5602642531, + "content_type": "application/pdf", + "filename": "23 21 13.03-1.0 - Level 2 Area B HVAC Piping-SD_H2MG.pdf", + "source_prostore_file_id": 5602642531, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1W8WSQ9XKKJ2T0V61ZV3XJ4?companyId=8089&projectId=2563870&sig=b67e8fd1e2a0dbeaa6fc103ee2e513c2444bd7693738344166dc24c15085331a", + "viewable_document_id": 866947699 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162187987, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-05T14:45:39Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096829, + "current_revision_id": 45441226, + "description": "HOT WATER AND CHILLED WATER PIPING, VALVES AND APPURTENANCES", + "label": "232113.03 - HOT WATER AND CHILLED WATER PIPING, VALVES AND APPURTENANCES", + "number": "232113.03", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331490 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Level 2 Area B HVAC Piping (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-05T14:45:39Z" + }, + { + "id": 64944510, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162252179, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143037564, + "additional_page_count": 0, + "attached_at": "2025-07-28T22:14:09Z", + "attachment_id": 5587022286, + "content_type": "application/pdf", + "document_markup_layer_id": 66353462, + "filename": "23 33 00-3.0 - Air Devices Submittal_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-07-28T22:14:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K19HJ5ZHZBJRRMWEQ5D8EN6M?companyId=8089&projectId=2563870&sig=c07adee194a20246d685ef61367c4131e3f00d1d5adbec14b3f97bbf9caf5b48", + "version_timestamp": "2025-07-28T22:14:09Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-08-04", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": "2025-07-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 162252175, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-23", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 162252178, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162252177, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162252176, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162252172, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142838638, + "additional_page_count": 1, + "attached_at": "2025-07-24T04:44:20Z", + "attachment_id": 5578016388, + "content_type": "application/pdf", + "document_markup_layer_id": 66191658, + "filename": "23 33 00 - 3.0 - Air Devices Submittal.pdf", + "markup_updated_at": "2025-07-24T04:48:26Z", + "state": "excluded", + "updated_at": "2025-07-24T04:48:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0XBY0F33S9AYJZFER964SHN?companyId=8089&projectId=2563870&sig=6452c7f2efa8a3e99ad4f7278dd0d2d84e120f7cfe89878301c1e210d3a4dddd", + "version_timestamp": "2025-07-24T04:48:26Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": "2025-07-23", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -6, + "workflow_group_number": 1 + }, + { + "id": 162252173, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162252174, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-23", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162252169, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142838610, + "additional_page_count": 1, + "attached_at": "2025-07-24T04:44:20Z", + "attachment_id": 5578016388, + "content_type": "application/pdf", + "document_markup_layer_id": 66191658, + "filename": "23 33 00 - 3.0 - Air Devices Submittal.pdf", + "markup_updated_at": "2025-07-24T04:48:26Z", + "state": "outdated", + "updated_at": "2025-07-24T04:44:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0XBY0F33S9AYJZFER964SHN?companyId=8089&projectId=2563870&sig=6452c7f2efa8a3e99ad4f7278dd0d2d84e120f7cfe89878301c1e210d3a4dddd", + "version_timestamp": "2025-07-24T04:44:20Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-23", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 162252171, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162252170, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162252168, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-30", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-24T04:43:40Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-07-29T12:43:40Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-04", + "formatted_number": "23 33 00-3", + "issue_date": "2025-07-23", + "last_distributed_submittal": { + "id": 28193439, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39647471, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5587022286, + "content_type": "application/pdf", + "filename": "23 33 00-3.0 - Air Devices Submittal_H2MG.pdf", + "source_prostore_file_id": 5587022286, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K19HJ5ZHZBJRRMWEQ5D8EN6M?companyId=8089&projectId=2563870&sig=c07adee194a20246d685ef61367c4131e3f00d1d5adbec14b3f97bbf9caf5b48", + "viewable_document_id": 864350137 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162252179, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 2026297, + "initials": "DS", + "name": "David Schad", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6675229, + "initials": "MG", + "name": "Matthew Grimes", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 6856479, + "initials": "JH", + "name": "Jason Hawkins", + "vendor_name": "Austin ISD" + }, + { + "id": 7057615, + "initials": "JD", + "name": "Jim Dillard", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10946327, + "initials": "MS", + "name": "Maried Salinas", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 12894778, + "initials": "RB", + "name": "Ravi Boosani", + "vendor_name": "Victoria Air Conditioning, Ltd." + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-07-29T12:43:40Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037817, + "current_revision_id": 45441235, + "description": "AIR DEVICES", + "label": "23 33 00 - AIR DEVICES", + "number": "23 33 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331504 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Air Devices ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-07-29T12:43:40Z" + }, + { + "id": 64948860, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162272719, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143594525, + "additional_page_count": 0, + "attached_at": "2025-08-08T06:05:31Z", + "attachment_id": 5611915887, + "content_type": "application/pdf", + "document_markup_layer_id": 66878916, + "filename": "09 22 16-2.1 - Non-structural Metal Framing-PD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-08T06:05:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K244GFQSQW4KXTNHR201SWCE?companyId=8089&projectId=2563870&sig=0f52618aadae49240276edea5d312659e5253600f573460ee8ec2f8f3b3f182c", + "version_timestamp": "2025-08-08T06:05:31Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-08-07", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-08", + "sent_date": "2025-07-24", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": 1, + "workflow_group_number": 2 + }, + { + "id": 162272717, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 142851517, + "additional_page_count": 1, + "attached_at": "2025-07-24T13:45:44Z", + "attachment_id": 5578666828, + "content_type": "application/pdf", + "document_markup_layer_id": 66203167, + "filename": "09 22 16 -2.1 - Non-Structural Metal Framing (PD).pdf", + "markup_updated_at": "2025-07-24T13:46:28Z", + "state": "excluded", + "updated_at": "2025-07-24T13:46:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0YAXB7AENT8JQKB5KXFC0FY?companyId=8089&projectId=2563870&sig=ce51368680aca8b7ef586f696758a0c9824dc5888cc1dbca139c9d7f6bbaffc7", + "version_timestamp": "2025-07-24T13:46:28Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-24", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162272718, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-07-31", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-24", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162272716, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 142851411, + "additional_page_count": 0, + "attached_at": "2025-07-24T13:44:27Z", + "attachment_id": 5578660936, + "content_type": "application/pdf", + "document_markup_layer_id": 66207494, + "filename": "33 mil.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-24T13:44:27Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0YAV0NCV99J6SF5X9GMV9MS?companyId=8089&projectId=2563870&sig=3927509149e47fabfd920ae475e6268b0451b94dbb5d8ae6acdbe6d33a294bd2", + "version_timestamp": "2025-07-24T13:44:27Z" + }, + { + "id": 142851143, + "additional_page_count": 0, + "attached_at": "2025-07-24T13:41:19Z", + "attachment_id": 5578650351, + "content_type": "application/pdf", + "document_markup_layer_id": 66202815, + "filename": "33 mil.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-24T13:41:19Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K0YANANQBGE9Y648Y706AFG1?companyId=8089&projectId=2563870&sig=60bb067f367d194526da6222c2b102a16f34fa37deaf4dd9f0528bec9d83e685", + "version_timestamp": "2025-07-24T13:41:19Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-07", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-24", + "sent_date": "2025-07-24", + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-24T13:24:18Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-08T13:34:41Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-07", + "formatted_number": "092216-2", + "issue_date": "2025-07-24", + "last_distributed_submittal": { + "id": 28337052, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39859089, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5611915887, + "content_type": "application/pdf", + "filename": "09 22 16-2.1 - Non-structural Metal Framing-PD_FGMA.pdf", + "source_prostore_file_id": 5611915887, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K244GFQSQW4KXTNHR201SWCE?companyId=8089&projectId=2563870&sig=0f52618aadae49240276edea5d312659e5253600f573460ee8ec2f8f3b3f182c", + "viewable_document_id": 868569622 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162272719, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-08T13:34:41Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-06-02", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037717, + "current_revision_id": 45441115, + "description": "NON-STRUCTURAL METAL FRAMING", + "label": "092216 - NON-STRUCTURAL METAL FRAMING", + "number": "092216", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331266 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-07-29", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Non-structural Metal Framing(PD) ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-08T13:34:41Z" + }, + { + "id": 65009572, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162486300, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162486299, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162486297, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162486296, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162486293, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-28T13:33:48Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "079200.01-3", + "issue_date": "2025-07-28", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37096756, + "current_revision_id": 45441095, + "description": "JOINT SEALANTS", + "label": "079200.01 - JOINT SEALANTS", + "number": "079200.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331189 + }, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-14T17:12:42Z" + }, + { + "id": 65009603, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162486405, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162486404, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162486403, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162486401, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 162486399, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-28T13:34:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + }, + { + "id": 11174551, + "name": "Chris Guzman" + }, + { + "id": 285520, + "name": "Curtis Northup" + } + ], + "drawing_ids": [], + "due_date": "2025-09-01", + "formatted_number": "13", + "issue_date": "2025-07-28", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "13", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": "2025-09-30", + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": null, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": "2025-08-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Joint Sealants (Sample)", + "type": { + "id": 283487, + "name": "Sample", + "translated_name": "Sample" + }, + "updated_at": "2025-08-14T17:12:42Z" + }, + { + "id": 65047546, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162619172, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-14", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 162619171, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "Reviewed by EE and sent directly to AOR for their comments.", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348895, + "considered": "approved as noted", + "name": "Approved as Noted" + }, + "response_required": false, + "returned_date": "2025-08-07", + "sent_date": "2025-07-29", + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": 2, + "workflow_group_number": 2 + }, + { + "id": 162619170, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162619168, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143069656, + "additional_page_count": 1, + "attached_at": "2025-07-29T15:02:49Z", + "attachment_id": 5588449542, + "content_type": "application/pdf", + "document_markup_layer_id": 66379493, + "filename": "08 41 13 - 2.1 - Exterior Storefront Rev 1 (SD).pdf", + "markup_updated_at": "2025-07-29T15:18:10Z", + "state": "excluded", + "updated_at": "2025-07-29T15:18:10Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1BBA45FATV417C1H8S0XZ4W?companyId=8089&projectId=2563870&sig=72576ba6f97dd83bfbbafc3d3a022411d94ab3ae568494e914e5cd18d8432f3f", + "version_timestamp": "2025-07-29T15:18:10Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162619169, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-05", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-29", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162619167, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143068382, + "additional_page_count": 1, + "attached_at": "2025-07-29T15:02:49Z", + "attachment_id": 5588449542, + "content_type": "application/pdf", + "document_markup_layer_id": 66379493, + "filename": "08 41 13 - 2.1 - Exterior Storefront Rev 1 (SD).pdf", + "markup_updated_at": "2025-07-29T15:18:10Z", + "state": "outdated", + "updated_at": "2025-07-29T15:02:49Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1BBA45FATV417C1H8S0XZ4W?companyId=8089&projectId=2563870&sig=72576ba6f97dd83bfbbafc3d3a022411d94ab3ae568494e914e5cd18d8432f3f", + "version_timestamp": "2025-07-29T15:02:49Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-12", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-29", + "sent_date": "2025-07-29", + "user": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-07-29T14:31:30Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-08-14", + "formatted_number": "084113-2", + "issue_date": "2025-07-29", + "last_distributed_submittal": null, + "lead_time": 112, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 11730072, + "name": "Taylor Rowe" + }, + "required_on_site_date": "2025-07-08", + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037697, + "current_revision_id": 45441105, + "description": "ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "label": "084113 - ALUMINUM-FRAMED ENTRANCES AND STOREFRONTS", + "number": "084113", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331235 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-02-25", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2780313, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "008.A", + "specification_section_id": null, + "submittal_ids": [ + 60126428, + 60126404, + 60126353, + 65047546, + 60123992, + 60122125, + 60126187, + 60121084, + 60126178, + 60123965, + 60122103, + 60121006, + 60121688, + 60126294, + 60121106, + 60121634, + 60126277, + 60123901, + 60126321, + 60121704, + 60123829, + 60123869, + 60122150, + 60126163, + 60121297, + 60121059, + 60121260, + 60123946, + 60121153, + 60126473 + ], + "title": "Division 008 Action Submittals", + "updated_at": "2025-01-09T22:23:22Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Exterior Storefronts (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-07T17:35:49Z" + }, + { + "id": 65084737, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162758184, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143594356, + "additional_page_count": 0, + "attached_at": "2025-08-08T05:43:35Z", + "attachment_id": 5611905786, + "content_type": "application/pdf", + "document_markup_layer_id": 66832320, + "filename": "06 16 00-1.1 - Sheathing-PD_EE_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-08T05:43:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2438WASNYGG8XJP26YBEYAJ?companyId=8089&projectId=2563870&sig=bc7e272690d65ac706ef3916ada9909d2a7b7503e8feffc0c7b51e5de3d8cfbe", + "version_timestamp": "2025-08-08T05:43:35Z" + } + ], + "comment": "See attached response from Engineer and Architect.", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "response_required": false, + "returned_date": "2025-08-08", + "sent_date": "2025-07-30", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -3, + "workflow_group_number": 2 + }, + { + "id": 162758183, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143151036, + "additional_page_count": 0, + "attached_at": "2025-07-30T17:01:42Z", + "attachment_id": 5591986580, + "content_type": "application/pdf", + "document_markup_layer_id": 66456841, + "filename": "06 16 00 1.1 - Sheathing (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "excluded", + "updated_at": "2025-07-30T17:01:42Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1E4FTH5KP315W54RZMMMYHW?companyId=8089&projectId=2563870&sig=f51cf5cb7be997eed84352100018e9bcb56dcfc510a8be02384261f56d596748", + "version_timestamp": "2025-07-30T17:01:42Z" + } + ], + "comment": "Please review for back of parapet 1/2\" sheathing.", + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": "2025-07-30", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162758182, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-30", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162758181, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143149942, + "additional_page_count": 0, + "attached_at": "2025-07-30T16:49:39Z", + "attachment_id": 5591940828, + "content_type": "application/pdf", + "document_markup_layer_id": 66447994, + "filename": "06 16 00 1.1 - Sheathing (PD).pdf", + "markup_updated_at": "2025-07-30T16:57:00Z", + "state": "excluded", + "updated_at": "2025-07-30T16:49:39Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1E3TAFGGNYXR922CASNEHBP?companyId=8089&projectId=2563870&sig=e8d295153501cd142db8ecc7af66b6b124edbebddaa51abdb41f10e046364fc5", + "version_timestamp": "2025-07-30T16:49:39Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-30T16:48:51Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": "2025-08-12T14:52:52Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "061600-1", + "issue_date": "2025-07-30", + "last_distributed_submittal": { + "id": 28376309, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39917950, + "comment": "See attached response from Engineer and Architect.
", + "distributed_attachments": [ + { + "id": 5611905786, + "content_type": "application/pdf", + "filename": "06 16 00-1.1 - Sheathing-PD_EE_FGMA.pdf", + "source_prostore_file_id": 5611905786, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2438WASNYGG8XJP26YBEYAJ?companyId=8089&projectId=2563870&sig=bc7e272690d65ac706ef3916ada9909d2a7b7503e8feffc0c7b51e5de3d8cfbe", + "viewable_document_id": 868568080 + } + ], + "response_name": "Revise and Resubmit", + "submittal_approver_id": 162758184, + "submittal_response": { + "id": 23348890, + "considered": "revise and resubmit", + "name": "Revise and Resubmit" + }, + "submittal_response_id": 23348890, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-12T14:52:52Z" + }, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-05-19", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037668, + "current_revision_id": 44088226, + "description": "SHEATHING", + "label": "061600 - SHEATHING", + "number": "061600", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 777023173 + }, + "status": { + "id": 4095, + "name": "Revise and Resubmit", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": "2025-04-14", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Sheathing (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-12T14:52:52Z" + }, + { + "id": 65085850, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162761424, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143456848, + "additional_page_count": 0, + "attached_at": "2025-08-06T05:35:43Z", + "attachment_id": 5605838386, + "content_type": "application/pdf", + "document_markup_layer_id": 66707769, + "filename": "09 29 00-4.0 - Partition Control Joint Layout-SD_FGMA.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-06T05:35:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YY0E31CSSAEK6CJHTDGCZV?companyId=8089&projectId=2563870&sig=d1b8630fb46a60b96fe2caf6aa9eb5c2373f620f9a3285d98a0118da9582f582", + "version_timestamp": "2025-08-06T05:35:43Z" + } + ], + "comment": "See attached response from Architect.", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-06", + "sent_date": "2025-07-30", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 162761423, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143153255, + "additional_page_count": 1, + "attached_at": "2025-07-30T17:20:35Z", + "attachment_id": 5592063289, + "content_type": "application/pdf", + "document_markup_layer_id": 66450301, + "filename": "09 29 00 4.0 - Partition Control Joint Layout (SD).pdf", + "markup_updated_at": "2025-07-30T17:29:43Z", + "state": "excluded", + "updated_at": "2025-07-30T17:29:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1E5JVZ16F7RBYR3ZE11JGH1?companyId=8089&projectId=2563870&sig=b3cedfa4fdb23f1ab53d6ef0e9c193b1e371426c45c8e9259d729bf13a56c393", + "version_timestamp": "2025-07-30T17:29:43Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": "2025-07-30", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 162761422, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-06", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-30", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162761421, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143152602, + "additional_page_count": 1, + "attached_at": "2025-07-30T17:20:35Z", + "attachment_id": 5592063289, + "content_type": "application/pdf", + "document_markup_layer_id": 66450301, + "filename": "09 29 00 4.0 - Partition Control Joint Layout (SD).pdf", + "markup_updated_at": "2025-07-30T17:29:43Z", + "state": "outdated", + "updated_at": "2025-07-30T17:20:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1E5JVZ16F7RBYR3ZE11JGH1?companyId=8089&projectId=2563870&sig=b3cedfa4fdb23f1ab53d6ef0e9c193b1e371426c45c8e9259d729bf13a56c393", + "version_timestamp": "2025-07-30T17:20:35Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-28", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -12, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-07-30T17:09:53Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-07T16:36:42Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-13", + "formatted_number": "092900-4", + "issue_date": "2025-07-30", + "last_distributed_submittal": { + "id": 28325482, + "distributed_attachments": [], + "distributed_by": { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39841469, + "comment": "See attached response from Architect.
", + "distributed_attachments": [ + { + "id": 5605838386, + "content_type": "application/pdf", + "filename": "09 29 00-4.0 - Partition Control Joint Layout-SD_FGMA.pdf", + "source_prostore_file_id": 5605838386, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1YY0E31CSSAEK6CJHTDGCZV?companyId=8089&projectId=2563870&sig=d1b8630fb46a60b96fe2caf6aa9eb5c2373f620f9a3285d98a0118da9582f582", + "viewable_document_id": 867495067 + } + ], + "response_name": "Approved", + "submittal_approver_id": 162761424, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6005807, + "initials": "VF", + "name": "Victor Flores", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 11152852, + "initials": "GO", + "name": "Gilbert Orta", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12041338, + "initials": "BH", + "name": "Brad Heugel", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12488065, + "initials": "JO", + "name": "Jonathan Orozco", + "vendor_name": "MK Marlow Company, LLC" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13539728, + "initials": "DB", + "name": "Derek Bryant", + "vendor_name": "Rogers-O'Brien Construction Company" + } + ], + "message": "See approved layout for CJ. Install as detailed.
", + "sent_at": "2025-08-07T16:36:42Z" + }, + "lead_time": 5, + "linked_drawing_ids": [], + "location_id": null, + "number": "4", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": "2025-08-27", + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037719, + "current_revision_id": 45441117, + "description": "GYPSUM BOARD", + "label": "092900 - GYPSUM BOARD", + "number": "092900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331277 + }, + "status": { + "id": 115339, + "name": "Approved / No Exceptions Taken", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Partition Control Joint Layout (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-07T16:36:42Z" + }, + { + "id": 65087828, + "actual_delivery_date": null, + "approvers": [ + { + "id": 162766671, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-19", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-05", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 162766670, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143397254, + "additional_page_count": 0, + "attached_at": "2025-08-05T13:36:28Z", + "attachment_id": 5603269013, + "content_type": "application/pdf", + "document_markup_layer_id": 66662903, + "filename": "09 29 00 5.0 - Trim Accessories (PD)_RO Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-05T13:36:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1X746855ZFTGEDJBGD4J9PE?companyId=8089&projectId=2563870&sig=051537e6ce85818bc765e9649dae7dad4a26d245f06f6025b0c3227380a5cdfb", + "version_timestamp": "2025-08-05T13:36:28Z" + } + ], + "comment": "Please review for approval and confirm substitution.", + "days_to_respond": 5, + "due_date": "2025-08-07", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-05", + "sent_date": "2025-07-31", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -2, + "workflow_group_number": 1 + }, + { + "id": 162766669, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-07", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-07-31", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 162766668, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143197465, + "additional_page_count": 0, + "attached_at": "2025-07-31T13:28:03Z", + "attachment_id": 5594128963, + "content_type": "application/pdf", + "document_markup_layer_id": 66561957, + "filename": "09 29 00 5.0 - Trim Accessories (PD).pdf", + "markup_updated_at": "2025-08-05T13:35:09Z", + "state": "excluded", + "updated_at": "2025-07-31T13:28:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1GANSNQNYJWSPGEKHWEGDY2?companyId=8089&projectId=2563870&sig=aa94bd4cb63e5e19f14c7bbb59c8db30147da6f2ca25327c46a2748ab975fe00", + "version_timestamp": "2025-07-31T13:28:03Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-13", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-07-30", + "sent_date": null, + "user": { + "id": 12041338, + "name": "Brad Heugel" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-07-30T17:52:35Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-19", + "formatted_number": "092900-5", + "issue_date": "2025-07-30", + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "5", + "private": false, + "received_date": null, + "received_from": { + "id": 12041338, + "name": "Brad Heugel" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 21615369, + "name": "MK Marlow Company, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037719, + "current_revision_id": 45441117, + "description": "GYPSUM BOARD", + "label": "092900 - GYPSUM BOARD", + "number": "092900", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331277 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2848839, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.C", + "specification_section_id": null, + "submittal_ids": [ + 60147155, + 60147223, + 65084737, + 64948860, + 65085850, + 65087828, + 60134721, + 60134617, + 60134340, + 60142361, + 60146800, + 60142523, + 60134373, + 60134361, + 60146819, + 60142297, + 60146835, + 60142268, + 60134434, + 60147200, + 60134446, + 59636575, + 59480543, + 59480608, + 59473151, + 59473216, + 60142983, + 60143020 + ], + "title": "MK Marlow Action Submittals", + "updated_at": "2025-03-24T15:25:52Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Trim Accessories (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-05T13:36:43Z" + }, + { + "id": 65171839, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163063828, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143587042, + "additional_page_count": 0, + "attached_at": "2025-08-07T22:23:43Z", + "attachment_id": 5611441541, + "content_type": "application/pdf", + "document_markup_layer_id": 66821536, + "filename": "26 05 33.01-3.0 - Electrical Raceway, Boxes and Miscellaneous_H2MG.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-07T22:23:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K237TWJV0WQ5X7P50TVDCVNG?companyId=8089&projectId=2563870&sig=0ab61a0b577262cc8a26fa046e6db2dac0af25cc2cfec594a3f0c460c92f3ec6", + "version_timestamp": "2025-08-07T22:23:43Z" + } + ], + "comment": "See attached response from Engineer.", + "days_to_respond": 5, + "due_date": "2025-08-14", + "response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "response_required": false, + "returned_date": "2025-08-07", + "sent_date": "2025-08-07", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": -5, + "workflow_group_number": 3 + }, + { + "id": 163063823, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 10, + "due_date": "2025-08-18", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-08-07", + "sent_date": "2025-08-04", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -7, + "workflow_group_number": 2 + }, + { + "id": 163063827, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-04", + "user": { + "id": 6856533, + "name": "Walter Haynes" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163063825, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-18", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-04", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163063820, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143332555, + "additional_page_count": 1, + "attached_at": "2025-08-04T14:32:04Z", + "attachment_id": 5600476847, + "content_type": "application/pdf", + "document_markup_layer_id": 66596215, + "filename": "26 05 33 - 3.0 - Rcaeway, Boxes and Miscellaneous.pdf", + "markup_updated_at": "2025-08-04T14:35:04Z", + "state": "excluded", + "updated_at": "2025-08-04T14:35:05Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1TQXWHCF71T8QYRBFXTA7W5?companyId=8089&projectId=2563870&sig=57b39f133912c71935541104e015edb1060f5c840d20bd7f0768f61c95014a57", + "version_timestamp": "2025-08-04T14:35:04Z" + } + ], + "comment": "", + "days_to_respond": 0, + "due_date": "2025-08-04", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-04", + "sent_date": "2025-08-04", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": 0, + "workflow_group_number": 1 + }, + { + "id": 163063821, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-04", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163063822, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 0, + "due_date": "2025-08-04", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-04", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163063817, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143332232, + "additional_page_count": 1, + "attached_at": "2025-08-04T14:32:04Z", + "attachment_id": 5600476847, + "content_type": "application/pdf", + "document_markup_layer_id": 66596215, + "filename": "26 05 33 - 3.0 - Rcaeway, Boxes and Miscellaneous.pdf", + "markup_updated_at": "2025-08-04T14:35:04Z", + "state": "outdated", + "updated_at": "2025-08-04T14:32:04Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K1TQXWHCF71T8QYRBFXTA7W5?companyId=8089&projectId=2563870&sig=57b39f133912c71935541104e015edb1060f5c840d20bd7f0768f61c95014a57", + "version_timestamp": "2025-08-04T14:32:04Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-04", + "sent_date": null, + "user": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 163063819, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11699254, + "name": "James Peebles" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163063818, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10145479, + "name": "Terri Lyon" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-08-04T14:30:45Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": "2025-08-08T13:33:47Z", + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-14", + "formatted_number": "26 05 33.01-3", + "issue_date": "2025-08-04", + "last_distributed_submittal": { + "id": 28337030, + "distributed_attachments": [], + "distributed_by": { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + "distributed_responses": [ + { + "id": 39859059, + "comment": "See attached response from Engineer.
", + "distributed_attachments": [ + { + "id": 5611441541, + "content_type": "application/pdf", + "filename": "26 05 33.01-3.0 - Electrical Raceway, Boxes and Miscellaneous_H2MG.pdf", + "source_prostore_file_id": 5611441541, + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K237TWJV0WQ5X7P50TVDCVNG?companyId=8089&projectId=2563870&sig=0ab61a0b577262cc8a26fa046e6db2dac0af25cc2cfec594a3f0c460c92f3ec6", + "viewable_document_id": 868497484 + } + ], + "response_name": "Approved", + "submittal_approver_id": 163063828, + "submittal_response": { + "id": 23348896, + "considered": "approved", + "name": "Approved" + }, + "submittal_response_id": 23348896, + "user": { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + }, + "user_id": 13211938 + } + ], + "distributed_to": [ + { + "id": 1360821, + "initials": "TS", + "name": "Ted Steger", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 6856533, + "initials": "RH", + "name": "Walter Haynes", + "vendor_name": "Austin ISD" + }, + { + "id": 8780461, + "initials": "EH", + "name": "Eamon Higgins", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9209674, + "initials": "IA", + "name": "Irving Abarca Silva", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 9775551, + "initials": "ND", + "name": "Noah Daily", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 10141546, + "initials": "A", + "name": " ACR Technical Review", + "vendor_name": "Austin ISD" + }, + { + "id": 10145479, + "initials": "TL", + "name": "Terri Lyon", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 10716012, + "initials": "AM", + "name": "Alma Mcelroy", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 10857518, + "initials": "AB", + "name": "Abhit Borkar", + "vendor_name": "Austin ISD" + }, + { + "id": 10881261, + "initials": null, + "name": "Steve Hafer", + "vendor_name": "FGM Architects Inc." + }, + { + "id": 11495137, + "initials": "CH", + "name": "Chase Heffernan", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 11699254, + "initials": "JP", + "name": "James Peebles", + "vendor_name": "Tumlinson Electric, LLC" + }, + { + "id": 12187300, + "initials": "CM", + "name": "Carlos Molina", + "vendor_name": "Austin ISD" + }, + { + "id": 12613405, + "initials": "AN", + "name": "Alec New", + "vendor_name": "Rogers-O'Brien Construction Company" + }, + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor_name": "FGM Architects Inc." + } + ], + "message": "", + "sent_at": "2025-08-08T13:33:47Z" + }, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 11495137, + "name": "Chase Heffernan" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167600, + "name": "Tumlinson Electric, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37079167, + "current_revision_id": 45419348, + "description": "ELECTRICAL BOXES", + "label": "26 05 33.01 - ELECTRICAL BOXES", + "number": "26 05 33.01", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804902965 + }, + "status": { + "id": 4092, + "name": "Approved as Noted", + "status": "Closed" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2760421, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "026.A", + "specification_section_id": null, + "submittal_ids": [ + 65171839, + 60933794, + 60644679, + 59535189, + 64682274, + 60223372, + 64063122, + 63730562, + 64064890, + 60232109, + 63888991, + 63467672, + 62865421, + 63364850, + 63364700, + 63210909, + 60234261, + 60233877, + 60237296, + 60237999, + 63179060, + 60933868, + 60237170, + 60238395, + 60233756, + 60223185, + 60223224, + 60223272, + 60221916, + 60222763, + 60237396, + 60233441, + 60234279, + 60233459, + 60232568, + 60232324, + 60232131, + 60232280, + 60222061, + 60222772, + 60222876, + 60237388 + ], + "title": "Tumlinson Action Submittals", + "updated_at": "2025-02-19T20:23:40Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Electrical Raceway, Boxes and Miscellaneous ", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-08T13:33:47Z" + }, + { + "id": 65270784, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163388802, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-11", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163388801, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163388800, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163388799, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 285520, + "name": "Curtis Northup" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163388798, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 11174551, + "name": "Chris Guzman" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [], + "cost_code_id": null, + "created_at": "2025-08-07T12:52:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "WC1, WC2, WC3 provided by ArchCGroup and installed by Austin Coatings.", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-09-11", + "formatted_number": "14", + "issue_date": "2025-08-07", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "14", + "private": false, + "received_date": null, + "received_from": { + "id": 11174551, + "name": "Chris Guzman" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19053337, + "name": "Austin Coatings Inc." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": null, + "status": { + "id": 2141, + "name": "Draft", + "status": "Draft" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2963843, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "009.E", + "specification_section_id": null, + "submittal_ids": [ + 60151700, + 60146400, + 60151305, + 65009603, + 65009572, + 60151733, + 60151684, + 60151325, + 60146486, + 60146419, + 65270784, + 61887046 + ], + "title": "Austin Coatings Action Submittals", + "updated_at": "2025-07-28T12:38:59Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Wall Covering (PD)", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-07T12:53:31Z" + }, + { + "id": 65356003, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163677379, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163677380, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-25", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-11", + "user": { + "id": 9943247, + "name": "Nathan Strange" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163677384, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-15", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163677382, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163677381, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-01", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 1368015, + "initials": "RM", + "name": "Ron Mercer", + "vendor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + } + }, + { + "id": 9943247, + "initials": "NS", + "name": "Nathan Strange", + "vendor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-11T22:09:11Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": null, + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-09-15", + "formatted_number": "055213-2", + "issue_date": "2025-08-11", + "last_distributed_submittal": null, + "lead_time": 21, + "linked_drawing_ids": [], + "location_id": null, + "number": "2", + "private": false, + "received_date": null, + "received_from": { + "id": 9943247, + "name": "Nathan Strange" + }, + "required_on_site_date": "2026-03-09", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "2", + "scheduled_task": null, + "specification_section": { + "id": 36037664, + "current_revision_id": 45441070, + "description": "PIPE AND TUBE RAILINGS", + "label": "055213 - PIPE AND TUBE RAILINGS", + "number": "055213", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331072 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2026-01-26", + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Pipe And tube Railings (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-11T22:09:12Z" + }, + { + "id": 65403636, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163845240, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163845238, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143839162, + "additional_page_count": 1, + "attached_at": "2025-08-13T16:40:26Z", + "attachment_id": 5622540070, + "content_type": "application/pdf", + "document_markup_layer_id": 67034248, + "filename": "21 00 00 - 6.1 - Fire Sprinkler Plan (AFD Approved).pdf", + "markup_updated_at": "2025-08-13T16:44:20Z", + "state": "current", + "updated_at": "2025-08-13T16:44:20Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2J4VE0P5FS0YZ494G92475D?companyId=8089&projectId=2563870&sig=0d4af4963efb7f736756db71a3aee4c0e1b7044737912fc9cdf43248ff967237", + "version_timestamp": "2025-08-13T16:44:20Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": "2025-08-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 163845239, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163845237, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143838838, + "additional_page_count": 1, + "attached_at": "2025-08-13T16:40:26Z", + "attachment_id": 5622540070, + "content_type": "application/pdf", + "document_markup_layer_id": 67034248, + "filename": "21 00 00 - 6.1 - Fire Sprinkler Plan (AFD Approved).pdf", + "markup_updated_at": "2025-08-13T16:44:20Z", + "state": "outdated", + "updated_at": "2025-08-13T16:40:26Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2J4VE0P5FS0YZ494G92475D?companyId=8089&projectId=2563870&sig=0d4af4963efb7f736756db71a3aee4c0e1b7044737912fc9cdf43248ff967237", + "version_timestamp": "2025-08-13T16:40:26Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 163845236, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10033193, + "name": "Kevin Mcnamara" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163845235, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 3732488, + "name": "Jeffrey Davis" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-13T16:39:09Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12350818, + "name": "Caleb Booth" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + } + ], + "drawing_ids": [], + "due_date": "2025-08-27", + "formatted_number": "21 10 00-6", + "issue_date": "2025-08-13", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "6", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": "2025-08-01", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Sprinkler Plan (AFD Approved)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-13T19:34:50Z" + }, + { + "id": 65413367, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163880481, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163880479, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143858441, + "additional_page_count": 1, + "attached_at": "2025-08-13T19:56:41Z", + "attachment_id": 5623321093, + "content_type": "application/pdf", + "document_markup_layer_id": 67052073, + "filename": "21 10 00 - 3.1 - Hydraulioc Calculations Rev 1.pdf", + "markup_updated_at": "2025-08-13T20:00:35Z", + "state": "current", + "updated_at": "2025-08-13T20:00:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2JG305Q3XMFDRYDRW8JKKTE?companyId=8089&projectId=2563870&sig=1fe4e04c3876d90f5cd7bcc4f5b2d6b30ac3ab2d3766f9ea41dadce758cf807f", + "version_timestamp": "2025-08-13T20:00:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": "2025-08-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 163880480, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163880478, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143858040, + "additional_page_count": 1, + "attached_at": "2025-08-13T19:56:41Z", + "attachment_id": 5623321093, + "content_type": "application/pdf", + "document_markup_layer_id": 67052073, + "filename": "21 10 00 - 3.1 - Hydraulioc Calculations Rev 1.pdf", + "markup_updated_at": "2025-08-13T20:00:35Z", + "state": "outdated", + "updated_at": "2025-08-13T19:56:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2JG305Q3XMFDRYDRW8JKKTE?companyId=8089&projectId=2563870&sig=1fe4e04c3876d90f5cd7bcc4f5b2d6b30ac3ab2d3766f9ea41dadce758cf807f", + "version_timestamp": "2025-08-13T19:56:41Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-13T19:55:56Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 13539728, + "name": "Derek Bryant" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-27", + "formatted_number": "21 10 00-3", + "issue_date": "2025-08-13", + "last_distributed_submittal": null, + "lead_time": 48, + "linked_drawing_ids": [], + "location_id": null, + "number": "3", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": "2025-07-01", + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": "2025-04-23", + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydraulic Calculations ", + "type": { + "id": 9134, + "name": "Calculations", + "translated_name": "Calculations" + }, + "updated_at": "2025-08-14T16:56:28Z" + }, + { + "id": 65414658, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163884349, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163884347, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143865429, + "additional_page_count": 1, + "attached_at": "2025-08-13T20:57:36Z", + "attachment_id": 5623559147, + "content_type": "application/pdf", + "document_markup_layer_id": 67057045, + "filename": "21 10 00 - 7.0 - Flow Test.pdf", + "markup_updated_at": "2025-08-13T21:15:02Z", + "state": "current", + "updated_at": "2025-08-13T21:15:03Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2JKJJFEKJQ15D5S2DT9QFAW?companyId=8089&projectId=2563870&sig=a9d8dafb65cddd37832b546155d8e13ad73dca30c0307a84e698307874932fa6", + "version_timestamp": "2025-08-13T21:15:02Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348887, + "considered": "approved", + "name": "Conforms - Processed for A/E Review " + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": "2025-08-13", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 163884348, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-20", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-13", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163884346, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143863975, + "additional_page_count": 1, + "attached_at": "2025-08-13T20:57:36Z", + "attachment_id": 5623559147, + "content_type": "application/pdf", + "document_markup_layer_id": 67057045, + "filename": "21 10 00 - 7.0 - Flow Test.pdf", + "markup_updated_at": "2025-08-13T21:15:02Z", + "state": "outdated", + "updated_at": "2025-08-13T20:57:36Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2JKJJFEKJQ15D5S2DT9QFAW?companyId=8089&projectId=2563870&sig=a9d8dafb65cddd37832b546155d8e13ad73dca30c0307a84e698307874932fa6", + "version_timestamp": "2025-08-13T20:57:36Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-13", + "sent_date": null, + "user": { + "id": 8596985, + "name": "Chris Orr" + }, + "variance": -10, + "workflow_group_number": 0 + }, + { + "id": 163884345, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10033193, + "name": "Kevin Mcnamara" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 163884344, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 3732488, + "name": "Jeffrey Davis" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-13T20:23:37Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-27", + "formatted_number": "21 10 00-7", + "issue_date": "2025-08-13", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": { + "id": 8596985, + "name": "Chris Orr" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 20101906, + "name": "Firetron, Inc" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037777, + "current_revision_id": 45441162, + "description": "FIRE PROTECTION SYSTEM", + "label": "21 10 00 - FIRE PROTECTION SYSTEM", + "number": "21 10 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331400 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2786664, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "021.A", + "specification_section_id": null, + "submittal_ids": [ + 65413367, + 65414658, + 62131890, + 65403636, + 62248828, + 61599888, + 60294305 + ], + "title": "Firetron (Fire Sprinkler) Action Submittals", + "updated_at": "2025-08-13T16:36:29Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Fire Sprinkler Flow Test", + "type": { + "id": 157589, + "name": "Certificates / Certifications", + "translated_name": "Certificates / Certifications" + }, + "updated_at": "2025-08-14T16:55:49Z" + }, + { + "id": 65424252, + "actual_delivery_date": null, + "approvers": [ + { + "id": 163922873, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-08-28", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-14", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 163922872, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 143887112, + "additional_page_count": 1, + "attached_at": "2025-08-14T13:14:09Z", + "attachment_id": 5624642940, + "content_type": "application/pdf", + "document_markup_layer_id": 67078300, + "filename": "03 30 00 25.0 - Civil Mix Design EPD (PD).pdf", + "markup_updated_at": "2025-08-14T13:18:41Z", + "state": "current", + "updated_at": "2025-08-14T13:18:41Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2MBE5V1CGAPDZDF12464XQW?companyId=8089&projectId=2563870&sig=d45af3d0371eade7bdf2cd29864d0cc5e80da22db48d6d82e212a1d179cd853f", + "version_timestamp": "2025-08-14T13:18:41Z" + } + ], + "comment": "Please see EPD documentation for record.", + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-08-14", + "sent_date": "2025-08-14", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 163922871, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-21", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-14", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 163922870, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 143886885, + "additional_page_count": 1, + "attached_at": "2025-08-14T13:14:09Z", + "attachment_id": 5624642940, + "content_type": "application/pdf", + "document_markup_layer_id": 67078300, + "filename": "03 30 00 25.0 - Civil Mix Design EPD (PD).pdf", + "markup_updated_at": "2025-08-14T13:18:41Z", + "state": "outdated", + "updated_at": "2025-08-14T13:14:09Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K2MBE5V1CGAPDZDF12464XQW?companyId=8089&projectId=2563870&sig=d45af3d0371eade7bdf2cd29864d0cc5e80da22db48d6d82e212a1d179cd853f", + "version_timestamp": "2025-08-14T13:14:09Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-08-28", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-14", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-14T13:12:50Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-28", + "formatted_number": "033000-25", + "issue_date": "2025-08-14", + "last_distributed_submittal": null, + "lead_time": 7, + "linked_drawing_ids": [], + "location_id": null, + "number": "25", + "private": false, + "received_date": null, + "received_from": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "required_on_site_date": "2025-08-20", + "responsible_contractor": { + "id": 32981333, + "name": "Lithko TX, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037653, + "current_revision_id": 45441060, + "description": "CAST-IN-PLACE CONCRETE", + "label": "033000 - CAST-IN-PLACE CONCRETE", + "number": "033000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331003 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Civil Mix Design EPD", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-14T16:55:14Z" + }, + { + "id": 65521430, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164254059, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164254055, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 164254058, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254057, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254056, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254052, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144093259, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:00:18Z", + "attachment_id": 5634147846, + "content_type": "application/pdf", + "document_markup_layer_id": 67278124, + "filename": "51005_Houston ES - Area C Penthouse HVAC Duct Shop Dwg 7-23-25.pdf", + "markup_updated_at": "2025-08-19T14:05:11Z", + "state": "excluded", + "updated_at": "2025-08-19T14:05:12Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31A2QJYK06FXJP8BWSMVWAR?companyId=8089&projectId=2563870&sig=97ec00853033cd25e7413dd44db758335cf60b6c184c3e35e79e8d4df1aa0b3d", + "version_timestamp": "2025-08-19T14:05:11Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164254053, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164254054, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164254049, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144092761, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:00:18Z", + "attachment_id": 5634147846, + "content_type": "application/pdf", + "document_markup_layer_id": 67278124, + "filename": "51005_Houston ES - Area C Penthouse HVAC Duct Shop Dwg 7-23-25.pdf", + "markup_updated_at": "2025-08-19T14:05:11Z", + "state": "outdated", + "updated_at": "2025-08-19T14:00:18Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31A2QJYK06FXJP8BWSMVWAR?companyId=8089&projectId=2563870&sig=97ec00853033cd25e7413dd44db758335cf60b6c184c3e35e79e8d4df1aa0b3d", + "version_timestamp": "2025-08-19T14:00:18Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 164254051, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 164254050, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 164254048, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-19T13:59:26Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-26", + "formatted_number": "23 30 00-7", + "issue_date": "2025-08-19", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area C Penthouse Ductwork", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-19T19:11:15Z" + }, + { + "id": 65521627, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164254550, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164254546, + "approver_type": "Approver", + "associated_attachments": [], + "comment": "No ACR review needed.\u00a0", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 10141546, + "name": " ACR Technical Review" + }, + "variance": -5, + "workflow_group_number": 2 + }, + { + "id": 164254549, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 6856479, + "name": "Jason Hawkins" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254548, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254547, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 7057615, + "name": "Jim Dillard" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164254543, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144093394, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:03:35Z", + "attachment_id": 5634159575, + "content_type": "application/pdf", + "document_markup_layer_id": 67278471, + "filename": "51005_Houston ES - Area A Penthouse HVAC Duct Shop Dwg 7-28-25.pdf", + "markup_updated_at": "2025-08-19T14:06:28Z", + "state": "excluded", + "updated_at": "2025-08-19T14:06:28Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31A8S27F8D350GZ9AY3NJ16?companyId=8089&projectId=2563870&sig=9df34cb708757ba8dfa093566280e45703b4a06ee6c569bddc1d2b42ba78b002", + "version_timestamp": "2025-08-19T14:06:28Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348885, + "considered": "approved as noted", + "name": "Received Only" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": "2025-08-19", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164254544, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164254545, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-19", + "user": { + "id": 8780461, + "name": "Eamon Higgins" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164254540, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144093109, + "additional_page_count": 1, + "attached_at": "2025-08-19T14:03:35Z", + "attachment_id": 5634159575, + "content_type": "application/pdf", + "document_markup_layer_id": 67278471, + "filename": "51005_Houston ES - Area A Penthouse HVAC Duct Shop Dwg 7-28-25.pdf", + "markup_updated_at": "2025-08-19T14:06:28Z", + "state": "outdated", + "updated_at": "2025-08-19T14:03:35Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K31A8S27F8D350GZ9AY3NJ16?companyId=8089&projectId=2563870&sig=9df34cb708757ba8dfa093566280e45703b4a06ee6c569bddc1d2b42ba78b002", + "version_timestamp": "2025-08-19T14:03:35Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "variance": -5, + "workflow_group_number": 0 + }, + { + "id": 164254542, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 2026297, + "name": "David Schad" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 164254541, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 10946327, + "name": "Maried Salinas" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 164254539, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12894778, + "name": "Ravi Boosani" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-19T14:03:13Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-26", + "formatted_number": "23 30 00-8", + "issue_date": "2025-08-19", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "8", + "private": false, + "received_date": null, + "received_from": { + "id": 6675229, + "name": "Matthew Grimes" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19999487, + "name": "Victoria Air Conditioning, Ltd." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037816, + "current_revision_id": 45441231, + "description": "DUCTWORK", + "label": "23 30 00 - DUCTWORK", + "number": "23 30 00", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331498 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": { + "id": 2782511, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "description": "", + "number": "023.A", + "specification_section_id": null, + "submittal_ids": [ + 65521430, + 65521627, + 64581516, + 64925390, + 63191073, + 64585433, + 63094076, + 62647491, + 61704275, + 60188804, + 60192161, + 64585161, + 64944510, + 64613869, + 64584202, + 64581838, + 64069231, + 63495389, + 63929663, + 64570044, + 61592199, + 63565626, + 63728544, + 60189588, + 63729763, + 63995976, + 64040981, + 60191365, + 63730305, + 63195399, + 60190703, + 63728275, + 63291685, + 60178754, + 62769774, + 63309572, + 63210519, + 60189888, + 62989783, + 63068955, + 60183667, + 60190873, + 60192088, + 62809284, + 62768962, + 62358242, + 62092111, + 61881235, + 61534763, + 61310496, + 61084532, + 61084346, + 60192577, + 60192482, + 60190979, + 60191870, + 60189176, + 60189857, + 60189574, + 60183390, + 60180381, + 60180201, + 60193019, + 60192368, + 60190715, + 60183225, + 60183191, + 60182179, + 60179684, + 60183025, + 60179164, + 60179663, + 60180266, + 60178333, + 60179341 + ], + "title": "Victoria Air Action Submittals", + "updated_at": "2025-02-19T20:26:04Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Area A Penthouse Ductwork", + "type": { + "id": 12478, + "name": "Product Data", + "translated_name": "Product Data" + }, + "updated_at": "2025-08-19T19:10:35Z" + }, + { + "id": 65522525, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164258249, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-16", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 3 + }, + { + "id": 164258248, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 4112315, + "name": "Nickie Ramm" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164258247, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164258246, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-09", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 12078701, + "name": "Christopher Doyle" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164258245, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-09-02", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164258244, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "variance": null, + "workflow_group_number": 0 + }, + { + "id": 164258243, + "approver_type": "Submitter", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-26", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": null, + "user": { + "id": 1993997, + "name": "Kevin Keisling" + }, + "variance": null, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 1627187, + "initials": "CR", + "name": "Christine Rohlack", + "vendor": { + "id": 19167438, + "name": "Floyd's Glass Co." + } + }, + { + "id": 1993997, + "initials": "KK", + "name": "Kevin Keisling", + "vendor": { + "id": 19167438, + "name": "Floyd's Glass Co." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-19T14:27:02Z", + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-09-16", + "formatted_number": "088000-7", + "issue_date": "2025-08-19", + "last_distributed_submittal": null, + "lead_time": null, + "linked_drawing_ids": [], + "location_id": null, + "number": "7", + "private": false, + "received_date": null, + "received_from": { + "id": 1627187, + "name": "Christine Rohlack" + }, + "required_on_site_date": null, + "responsible_contractor": { + "id": 19167438, + "name": "Floyd's Glass Co." + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 36037708, + "current_revision_id": 45441111, + "description": "GLAZING", + "label": "088000 - GLAZING", + "number": "088000", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331253 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "submittal_package": null, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "space", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-19T14:36:21Z" + }, + { + "id": 65551291, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164347234, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-20", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164347233, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144152700, + "additional_page_count": 1, + "attached_at": "2025-08-20T09:13:32Z", + "attachment_id": 5636710022, + "content_type": "application/pdf", + "document_markup_layer_id": 67336523, + "filename": "05 12 00 16.1 - Hydronic Pipe Steel Rack (SD).pdf", + "markup_updated_at": "2025-08-20T09:17:06Z", + "state": "current", + "updated_at": "2025-08-20T09:17:06Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K33C22M8NJE1EWJEDEPX0N5G?companyId=8089&projectId=2563870&sig=754430a7d4395e4ae98af486ba7ff0b911359101c5153f0b879742cb31aa9997", + "version_timestamp": "2025-08-20T09:17:06Z" + } + ], + "comment": "Field use shop drawings submitted for approval. Material in fabrication.", + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348894, + "considered": "for record only", + "name": "For Record Only" + }, + "response_required": false, + "returned_date": "2025-08-20", + "sent_date": "2025-08-20", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164347232, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-20", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164347231, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144152676, + "additional_page_count": 1, + "attached_at": "2025-08-20T09:13:32Z", + "attachment_id": 5636710022, + "content_type": "application/pdf", + "document_markup_layer_id": 67336523, + "filename": "05 12 00 16.1 - Hydronic Pipe Steel Rack (SD).pdf", + "markup_updated_at": "2025-08-20T09:17:06Z", + "state": "outdated", + "updated_at": "2025-08-20T09:13:32Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K33C22M8NJE1EWJEDEPX0N5G?companyId=8089&projectId=2563870&sig=754430a7d4395e4ae98af486ba7ff0b911359101c5153f0b879742cb31aa9997", + "version_timestamp": "2025-08-20T09:13:32Z" + } + ], + "comment": "", + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-19", + "sent_date": null, + "user": { + "id": 1368015, + "name": "Ron Mercer" + }, + "variance": -6, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-20T09:10:59Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-08-27", + "formatted_number": "051200-16", + "issue_date": "2025-08-20", + "last_distributed_submittal": null, + "lead_time": 14, + "linked_drawing_ids": [], + "location_id": null, + "number": "16", + "private": false, + "received_date": null, + "received_from": { + "id": 1368015, + "name": "Ron Mercer" + }, + "required_on_site_date": "2025-09-03", + "responsible_contractor": { + "id": 21616726, + "name": "Thornton Steel San Antonio, LLC" + }, + "revision": "1", + "scheduled_task": null, + "specification_section": { + "id": 36037657, + "current_revision_id": 45441064, + "description": "STRUCTURAL STEEL FRAMING", + "label": "051200 - STRUCTURAL STEEL FRAMING", + "number": "051200", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 805331029 + }, + "status": { + "id": 6113, + "name": "Submitted for Approval", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757566, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "005.A", + "specification_section_id": null, + "submittal_ids": [ + 65551291, + 64449132, + 64675621, + 64675600, + 65356003, + 62090513, + 64568738, + 64670785, + 64670828, + 64568670, + 63331605, + 63331112, + 63134459, + 62191637, + 61658780, + 61658800, + 61478867, + 61478907, + 59478803, + 59472551, + 60478416, + 60856587, + 60856634, + 59472596, + 59473290, + 59473643, + 59480264, + 60856739, + 64067810, + 64102526, + 62836218, + 63527574, + 59473355, + 62635661, + 61332041, + 61075568, + 60856919, + 59448930, + 59480188 + ], + "title": "Thornton Inc. Action Submittals", + "updated_at": "2025-02-25T14:16:14Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Hydronic Pipe Steel Rack ", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-20T09:18:41Z" + }, + { + "id": 65555845, + "actual_delivery_date": null, + "approvers": [ + { + "id": 164363838, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 10, + "due_date": "2025-09-03", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-20", + "user": { + "id": 13211938, + "name": "Jason George" + }, + "variance": null, + "workflow_group_number": 2 + }, + { + "id": 164363837, + "approver_type": "Approver", + "associated_attachments": [ + { + "id": 144169608, + "additional_page_count": 0, + "attached_at": "2025-08-20T14:53:43Z", + "attachment_id": 5637532628, + "content_type": "application/pdf", + "document_markup_layer_id": 67356617, + "filename": "433S 1.0 - Site Paving Control Joint Layout (SD)_RO Review.pdf", + "markup_updated_at": null, + "state": "current", + "updated_at": "2025-08-20T14:53:43Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K33ZGVQSWCAWJNR2RZ2CB20J?companyId=8089&projectId=2563870&sig=6f99c6c70e47b45890fc573449c83a5080943a0b2b9d872a184efc4a909b438d", + "version_timestamp": "2025-08-20T14:53:43Z" + } + ], + "comment": "Please review for approval.", + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348886, + "considered": "approved as noted", + "name": "Conforms as Noted" + }, + "response_required": false, + "returned_date": "2025-08-20", + "sent_date": "2025-08-20", + "user": { + "id": 9775551, + "name": "Noah Daily" + }, + "variance": -5, + "workflow_group_number": 1 + }, + { + "id": 164363836, + "approver_type": "Approver", + "associated_attachments": [], + "comment": null, + "days_to_respond": 5, + "due_date": "2025-08-27", + "response": { + "id": 23348892, + "considered": "pending", + "name": "Pending" + }, + "response_required": false, + "returned_date": null, + "sent_date": "2025-08-20", + "user": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "variance": null, + "workflow_group_number": 1 + }, + { + "id": 164363835, + "approver_type": "Submitter", + "associated_attachments": [ + { + "id": 144163797, + "additional_page_count": 1, + "attached_at": "2025-08-20T13:53:30Z", + "attachment_id": 5637280688, + "content_type": "application/pdf", + "document_markup_layer_id": 67349336, + "filename": "433S 1.0 - Site Paving Control Joint Layout (SD).pdf", + "markup_updated_at": "2025-08-20T13:55:06Z", + "state": "excluded", + "updated_at": "2025-08-20T13:53:31Z", + "url": "https://storage.procore.com/api/v5/files/us-east-1/pro-core.com/companies/9808/01K33W2Q4SNSPF3FD24G43QQ4H?companyId=8089&projectId=2563870&sig=dda41023ce4da0a1a1364ddc61b6a8877a964d3ddd1fd54b5c2e716537a11702", + "version_timestamp": "2025-08-20T13:53:30Z" + } + ], + "comment": "", + "days_to_respond": 10, + "due_date": "2025-09-03", + "response": { + "id": 23348889, + "considered": "submitted", + "name": "Submitted" + }, + "response_required": false, + "returned_date": "2025-08-20", + "sent_date": null, + "user": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "variance": -10, + "workflow_group_number": 0 + } + ], + "associated_attachments": [], + "ball_in_court": [ + { + "id": 13211938, + "initials": "JG", + "name": "Jason George", + "vendor": { + "id": 32690355, + "name": "FGM Architects Inc." + } + } + ], + "cost_code_id": null, + "created_at": "2025-08-20T13:43:21Z", + "created_by": { + "id": 9775551, + "name": "Noah Daily" + }, + "current_revision": true, + "custom_fields": { + "custom_field_76813": { + "data_type": "lov_entry", + "value": null + }, + "custom_field_76814": { + "data_type": "datetime", + "value": null + }, + "custom_field_261598": { + "data_type": "boolean", + "value": false + }, + "custom_field_472802": { + "data_type": "datetime", + "value": null + } + }, + "description": "", + "distributed_at": null, + "distribution_members": [ + { + "id": 10857518, + "name": "Abhit Borkar" + }, + { + "id": 12613405, + "name": "Alec New" + }, + { + "id": 10716012, + "name": "Alma Mcelroy" + }, + { + "id": 12187300, + "name": "Carlos Molina" + }, + { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + { + "id": 13211938, + "name": "Jason George" + }, + { + "id": 9775551, + "name": "Noah Daily" + }, + { + "id": 10881261, + "name": "Steve Hafer" + }, + { + "id": 1360821, + "name": "Ted Steger" + } + ], + "drawing_ids": [], + "due_date": "2025-09-03", + "formatted_number": "433S-1", + "issue_date": "2025-08-20", + "last_distributed_submittal": null, + "lead_time": 10, + "linked_drawing_ids": [], + "location_id": null, + "number": "1", + "private": false, + "received_date": null, + "received_from": { + "id": 12467647, + "name": "Tanner Bernal" + }, + "required_on_site_date": "2025-08-27", + "responsible_contractor": { + "id": 32981333, + "name": "Lithko TX, LLC" + }, + "revision": "0", + "scheduled_task": null, + "specification_section": { + "id": 37050922, + "current_revision_id": 45383959, + "description": "P.C. CONCRETE DRIVEWAYS", + "label": "433S - P.C. CONCRETE DRIVEWAYS", + "number": "433S", + "specification_area_id": null, + "specification_area_name": null, + "viewable_document_id": 804261807 + }, + "status": { + "id": 1, + "name": "Open", + "status": "Open" + }, + "sub_job_id": null, + "submit_by": null, + "submittal_manager": { + "id": 9775551, + "name": "Noah Daily" + }, + "submittal_package": { + "id": 2757260, + "attachments": [], + "attachments_count": 0, + "created_by": { + "id": 9209674, + "name": "Irving Abarca Silva" + }, + "description": "", + "number": "003.A", + "specification_section_id": null, + "submittal_ids": [ + 65555845, + 65424252, + 61414813, + 61297225, + 61297132, + 61208794, + 60755056, + 60755022, + 60754897, + 60754831, + 61456809, + 60981834, + 60981780, + 60783062, + 60732208, + 60732752, + 60732440, + 60731154, + 60730588, + 59440668, + 59440870, + 59440928, + 59439747 + ], + "title": "Lithko Contracting Action Submittals", + "updated_at": "2025-02-20T20:34:41Z" + }, + "submittal_workflow_template": null, + "submittal_workflow_template_applied_at": null, + "title": "Site Paving Control Joint Layout (SD)", + "type": { + "id": 283488, + "name": "Shop Drawing", + "translated_name": "Shop Drawing" + }, + "updated_at": "2025-08-20T14:53:43Z" + } +] \ No newline at end of file